Changeset 35811 for trunk/src/wp-admin/edit-form-advanced.php
- Timestamp:
- 12/07/2015 04:25:53 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/edit-form-advanced.php
r34925 r35811 632 632 echo '<span id="last-edit">'; 633 633 if ( $last_user = get_userdata( get_post_meta( $post_ID, '_edit_last', true ) ) ) { 634 printf( __('Last edited by %1$s on %2$s at %3$s'), esc_html( $last_user->display_name ), mysql2date(get_option('date_format'), $post->post_modified), mysql2date(get_option('time_format'), $post->post_modified));634 printf( __( 'Last edited by %1$s on %2$s at %3$s' ), esc_html( $last_user->display_name ), mysql2date( __( 'F j, Y' ), $post->post_modified ), mysql2date( __( 'g:i a' ), $post->post_modified ) ); 635 635 } else { 636 printf( __('Last edited on %1$s at %2$s'), mysql2date(get_option('date_format'), $post->post_modified), mysql2date(get_option('time_format'), $post->post_modified));636 printf( __( 'Last edited on %1$s at %2$s' ), mysql2date( __( 'F j, Y' ), $post->post_modified ), mysql2date( __( 'g:i a' ), $post->post_modified ) ); 637 637 } 638 638 echo '</span>';
Note: See TracChangeset
for help on using the changeset viewer.