Make WordPress Core

Ticket #14579: 14579-submitted-on.diff

File 14579-submitted-on.diff, 749 bytes (added by zeo, 14 years ago)

Restore "Submitted on" which was missing since 3.0. See the current Comments Help tab.

  • wp-admin/includes/class-wp-comments-list-table.php

     
    336336
    337337                echo '<div id="submitted-on">';
    338338                /* translators: 2: comment date, 3: comment time */
    339                 printf( __( '<a href="%1$s">%2$s at %3$s</a>' ), $comment_url,
     339                printf( __( 'Submitted on <a href="%1$s">%2$s at %3$s</a>' ), $comment_url,
    340340                        /* translators: comment date format. See http://php.net/date */ get_comment_date( __( 'Y/m/d' ) ),
    341341                        /* translators: comment time format. See http://php.net/date */ get_comment_date( get_option( 'time_format' ) ) );
    342342