Make WordPress Core


Ignore:
Timestamp:
12/07/2015 04:25:53 AM (9 years ago)
Author:
iseulde
Message:

Make date format consistent across the admin

The 'date_format' and 'time_format' options shouldn't affect the backend.

See #30864

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-comments-list-table.php

    r35748 r35811  
    721721            /* translators: comment date format. See http://php.net/date */
    722722            get_comment_date( __( 'Y/m/d' ), $comment ),
    723             get_comment_date( get_option( 'time_format' ), $comment )
     723            get_comment_date( __( 'g:i a' ), $comment )
    724724        );
    725725        echo '</a>';
Note: See TracChangeset for help on using the changeset viewer.