Make WordPress Core


Ignore:
Timestamp:
04/22/2013 07:04:02 PM (11 years ago)
Author:
nacin
Message:

Ensure that the resulting post time is localized after the date is changed. props SergeyBiryukov. fixes #24072.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/template.php

    r24028 r24046  
    620620
    621621    echo '<div class="timestamp-wrap">';
    622     /* translators: 1: month input, 2: day input, 3: year input, 4: hour input, 5: minute input */
    623     printf(__('%1$s%2$s, %3$s @ %4$s : %5$s'), $month, $day, $year, $hour, $minute);
     622    /* translators: 1: month, 2: day, 3: year, 4: hour, 5: minute */
     623    printf( __( '%1$s %2$s, %3$s @ %4$s : %5$s' ), $month, $day, $year, $hour, $minute );
    624624
    625625    echo '</div><input type="hidden" id="ss" name="ss" value="' . $ss . '" />';
Note: See TracChangeset for help on using the changeset viewer.