I18N: Remove `<a>` tag from translatable string in `wp-admin/comment.php`.
Props ramiy. See #34686. Built from https://develop.svn.wordpress.org/trunk@35665 git-svn-id: http://core.svn.wordpress.org/trunk@35629 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
5539193dd0
commit
7cb5ca6b33
|
@ -194,15 +194,14 @@ if ( $comment->comment_approved != '0' ) { // if not unapproved
|
|||
<tr>
|
||||
<th scope="row"><?php _e( 'Submitted on' ); ?></th>
|
||||
<td>
|
||||
<?php
|
||||
/* translators: 2: comment date, 3: comment time */
|
||||
printf( __( '<a href="%1$s">%2$s at %3$s</a>' ),
|
||||
esc_url( get_comment_link( $comment ) ),
|
||||
<a href="<?php echo esc_url( get_comment_link( $comment ) ); ?>"><?php
|
||||
/* translators: 1: comment date, 2: comment time */
|
||||
printf( __( '%1$s at %2$s' ),
|
||||
/* translators: comment date format. See http://php.net/date */
|
||||
get_comment_date( __( 'Y/m/d' ), $comment ),
|
||||
get_comment_date( get_option( 'time_format' ), $comment )
|
||||
);
|
||||
?>
|
||||
?></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.4-beta4-35664';
|
||||
$wp_version = '4.4-beta4-35665';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue