Make WordPress Core

Ticket #15206: 15206.diff

File 15206.diff, 1.3 KB (added by nacin, 14 years ago)
  • wp-includes/comment-template.php

     
    13531353                <?php printf(__('<cite class="fn">%s</cite> <span class="says">says:</span>'), get_comment_author_link()) ?>
    13541354                </div>
    13551355<?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>
    13571357                <br />
    13581358<?php endif; ?>
    13591359
  • wp-content/themes/twentyten/functions.php

     
    308308                        <?php printf( __( '%s <span class="says">says:</span>', 'twentyten' ), sprintf( '<cite class="fn">%s</cite>', get_comment_author_link() ) ); ?>
    309309                </div><!-- .comment-author .vcard -->
    310310                <?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>
    312312                        <br />
    313313                <?php endif; ?>
    314314