Make WordPress Core

Ticket #11645: 11645.diff

File 11645.diff, 1.6 KB (added by andrewryno, 14 years ago)
  • wp-admin/includes/template.php

     
    622622        $minute = '<input type="text" ' . ( $multi ? '' : 'id="mn" ' ) . 'name="mn" value="' . $mn . '" size="2" maxlength="2"' . $tab_index_attribute . ' autocomplete="off" />';
    623623
    624624        echo '<div class="timestamp-wrap">';
     625        echo '<input type="radio" name="publish_when[]" value="immediately" id="immediately" checked="checked" /> <label for="immediately">' . __( 'Immediately' ) . '</label><br />';
     626        echo '<input type="radio" name="publish_when[]" value="future" id="future" /> <label for="future">';
    625627        /* translators: 1: month input, 2: day input, 3: year input, 4: hour input, 5: minute input */
    626628        printf(__('%1$s%2$s, %3$s @ %4$s : %5$s'), $month, $day, $year, $hour, $minute);
    627 
     629        echo '</label>';
    628630        echo '</div><input type="hidden" id="ss" name="ss" value="' . $ss . '" />';
    629631
    630632        if ( $multi ) return;
  • wp-admin/css/colors-classic.dev.css

     
    1818select {
    1919        border-color: #dfdfdf;
    2020        background-color: #fff;
     21        color: #174f69;
    2122}
    2223
    2324kbd,
  • wp-admin/css/colors-fresh.dev.css

     
    1818select {
    1919        border-color: #dfdfdf;
    2020        background-color: #fff;
     21        color: #333;
    2122}
    2223
    2324kbd,