Make WordPress Core

Ticket #17180: 17180.2.diff

File 17180.2.diff, 2.1 KB (added by solarissmoke, 13 years ago)

There was some unnecesasry JS in the previous patch

  • wp-admin/includes/post.php

     
    108108                $hh = $post_data['hh'];
    109109                $mn = $post_data['mn'];
    110110                $ss = $post_data['ss'];
    111                 $aa = ($aa <= 0 ) ? date('Y') : $aa;
    112                 $mm = ($mm <= 0 ) ? date('n') : $mm;
    113                 $jj = ($jj > 31 ) ? 31 : $jj;
    114                 $jj = ($jj <= 0 ) ? date('j') : $jj;
     111                if( ! checkdate( $mm, $jj, $aa ) )
     112                        return new WP_Error( 'invalid_publish_date', __( 'The publish date you supplied is invalid.' ) );
     113
    115114                $hh = ($hh > 23 ) ? $hh -24 : $hh;
    116115                $mn = ($mn > 59 ) ? $mn -60 : $mn;
    117116                $ss = ($ss > 59 ) ? $ss -60 : $ss;
  • wp-admin/js/post.dev.js

     
    376376                        originalDate = new Date( $('#hidden_aa').val(), $('#hidden_mm').val() -1, $('#hidden_jj').val(), $('#hidden_hh').val(), $('#hidden_mn').val() );
    377377                        currentDate = new Date( $('#cur_aa').val(), $('#cur_mm').val() -1, $('#cur_jj').val(), $('#cur_hh').val(), $('#cur_mn').val() );
    378378
     379                       
    379380                        if ( attemptedDate.getFullYear() != aa || (1 + attemptedDate.getMonth()) != mm || attemptedDate.getDate() != jj || attemptedDate.getMinutes() != mn ) {
    380381                                $('.timestamp-wrap', '#timestampdiv').addClass('form-invalid');
    381382                                return false;
     
    489490                $('#timestampdiv').siblings('a.edit-timestamp').click(function() {
    490491                        if ($('#timestampdiv').is(":hidden")) {
    491492                                $('#timestampdiv').slideDown('fast');
     493                                $('#publish').prop('disabled', true);
    492494                                $(this).hide();
    493495                        }
    494496                        return false;
     
    503505                        $('#mn').val($('#hidden_mn').val());
    504506                        $('#timestampdiv').siblings('a.edit-timestamp').show();
    505507                        updateText();
     508                        $('#publish').prop('disabled', false);
    506509                        return false;
    507510                });
    508511
     
    510513                        if ( updateText() ) {
    511514                                $('#timestampdiv').slideUp('fast');
    512515                                $('#timestampdiv').siblings('a.edit-timestamp').show();
     516                                $('#publish').prop('disabled', false);
    513517                        }
    514518                        return false;
    515519                });