Ticket #15206: 15206.diff
File 15206.diff, 1.3 KB (added by , 14 years ago) |
---|
-
wp-includes/comment-template.php
1353 1353 <?php printf(__('<cite class="fn">%s</cite> <span class="says">says:</span>'), get_comment_author_link()) ?> 1354 1354 </div> 1355 1355 <?php if ($comment->comment_approved == '0') : ?> 1356 <em ><?php _e('Your comment is awaiting moderation.') ?></em>1356 <em class="comment-awaiting-moderation"><?php _e('Your comment is awaiting moderation.') ?></em> 1357 1357 <br /> 1358 1358 <?php endif; ?> 1359 1359 -
wp-content/themes/twentyten/functions.php
308 308 <?php printf( __( '%s <span class="says">says:</span>', 'twentyten' ), sprintf( '<cite class="fn">%s</cite>', get_comment_author_link() ) ); ?> 309 309 </div><!-- .comment-author .vcard --> 310 310 <?php if ( $comment->comment_approved == '0' ) : ?> 311 <em ><?php _e( 'Your comment is awaiting moderation.', 'twentyten' ); ?></em>311 <em class="comment-awaiting-moderation"><?php _e( 'Your comment is awaiting moderation.', 'twentyten' ); ?></em> 312 312 <br /> 313 313 <?php endif; ?> 314 314