Strip commas and spaces from charset. Props Jose Carlos Norte

git-svn-id: http://svn.automattic.com/wordpress/branches/2.8@12057 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2009-10-19 15:10:59 +00:00
parent 14b9111b10
commit 2ba430fac6
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ $excerpt = stripslashes($_POST['excerpt']);
$blog_name = stripslashes($_POST['blog_name']);
if ($charset)
$charset = strtoupper( trim($charset) );
$charset = str_replace( array(',', ' '), '', strtoupper( trim($charset) ) );
else
$charset = 'ASCII, UTF-8, ISO-8859-1, JIS, EUC-JP, SJIS';