Fix some encoding issues. props hakre, fixes #14735.

git-svn-id: http://svn.automattic.com/wordpress/trunk@16005 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
nacin 2010-10-27 09:54:17 +00:00
parent a34d2bbe94
commit 9f9f5205b0
2 changed files with 8 additions and 8 deletions

View File

@ -434,7 +434,7 @@ add_action( 'widgets_init', 'twentyten_remove_recent_comments_style' );
if ( ! function_exists( 'twentyten_posted_on' ) ) : if ( ! function_exists( 'twentyten_posted_on' ) ) :
/** /**
* Prints HTML with meta information for the current postdate/time and author. * Prints HTML with meta information for the current post-date/time and author.
* *
* @since Twenty Ten 1.0 * @since Twenty Ten 1.0
*/ */

View File

@ -719,13 +719,13 @@ class Snoopy
chr(176), chr(176),
chr(39), chr(39),
chr(128), chr(128),
"<EFBFBD>", chr(0xE4), // ANSI &auml;
"<EFBFBD>", chr(0xF6), // ANSI &ouml;
"<EFBFBD>", chr(0xFC), // ANSI &uuml;
"<EFBFBD>", chr(0xC4), // ANSI &Auml;
"<EFBFBD>", chr(0xD6), // ANSI &Ouml;
"<EFBFBD>", chr(0xDC), // ANSI &Uuml;
"<EFBFBD>", chr(0xDF), // ANSI &szlig;
); );
$text = preg_replace($search,$replace,$document); $text = preg_replace($search,$replace,$document);