Theme Compat: Avoid using HTML tags in translation strings.

Props ramiy.	
Fixes #31867.

Built from https://develop.svn.wordpress.org/trunk@34342


git-svn-id: http://core.svn.wordpress.org/trunk@34306 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Scott Taylor 2015-09-20 02:47:24 +00:00
parent ebb01aae4c
commit 630d3db338
2 changed files with 3 additions and 3 deletions

View File

@ -35,7 +35,7 @@ while( have_posts()) : the_post();
<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>
<?php if ( pings_open() ) { ?>
<p><?php printf(__('The <abbr title="Universal Resource Locator">URL</abbr> to TrackBack this entry is: <em>%s</em>'), get_trackback_url()); ?></p>
<p><?php printf( __( 'The <abbr title="Universal Resource Locator">URL</abbr> to TrackBack this entry is: %s' ), '<em>' . get_trackback_url() . '</em>' ); ?></p>
<?php } ?>
<?php
@ -63,7 +63,7 @@ if ( post_password_required($post) ) { // and it doesn't match the cookie
<?php if ( comments_open() ) { ?>
<h2><?php _e('Leave a comment'); ?></h2>
<p><?php printf(__('Line and paragraph breaks automatic, email address never displayed, <acronym title="Hypertext Markup Language">HTML</acronym> allowed: <code>%s</code>'), allowed_tags()); ?></p>
<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>
<form action="<?php echo site_url(); ?>/wp-comments-post.php" method="post" id="commentform">
<?php if ( $user_ID ) : ?>

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.4-alpha-34341';
$wp_version = '4.4-alpha-34342';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.