Make WordPress Core

Ticket #31867: 31867.patch

File 31867.patch, 2.1 KB (added by ramiy, 10 years ago)
  • wp-includes/theme-compat/comments-popup.php

     
    3535<p><a href="<?php echo esc_url( get_post_comments_feed_link($post->ID) ); ?>"><?php _e('<abbr title="Really Simple Syndication">RSS</abbr> feed for comments on this post.'); ?></a></p>
    3636
    3737<?php if ( pings_open() ) { ?>
    38 <p><?php printf(__('The <abbr title="Universal Resource Locator">URL</abbr> to TrackBack this entry is: <em>%s</em>'), get_trackback_url()); ?></p>
     38<p><?php printf(__('The <abbr title="Universal Resource Locator">URL</abbr> to TrackBack this entry is: %s'), '<em>' . get_trackback_url() . '</em>' ); ?></p>
    3939<?php } ?>
    4040
    4141<?php
     
    6363
    6464<?php if ( comments_open() ) { ?>
    6565<h2><?php _e('Leave a comment'); ?></h2>
    66 <p><?php printf(__('Line and paragraph breaks automatic, e-mail address never displayed, <acronym title="Hypertext Markup Language">HTML</acronym> allowed: <code>%s</code>'), allowed_tags()); ?></p>
     66<p><?php printf(__('Line and paragraph breaks automatic, e-mail address never displayed, <acronym title="Hypertext Markup Language">HTML</acronym> allowed: %s'), '<code>' . allowed_tags() . '</code>' ); ?></p>
    6767
    6868<form action="<?php echo site_url(); ?>/wp-comments-post.php" method="post" id="commentform">
    6969<?php if ( $user_ID ) : ?>
  • wp-includes/theme-compat/comments.php

     
    9292
    9393<?php endif; ?>
    9494
    95 <!--<p><small><?php printf(__('<strong>XHTML:</strong> You can use these tags: <code>%s</code>'), allowed_tags()); ?></small></p>-->
     95<!--<p><small><?php printf( __('<strong>XHTML:</strong> You can use these tags: %s'), '<code>' . allowed_tags() . '</code>' ); ?></small></p>-->
    9696
    9797<p><textarea name="comment" id="comment" cols="58" rows="10" tabindex="4"></textarea></p>
    9898