fixed sql query mess, I'm so sorry about it

git-svn-id: http://svn.automattic.com/wordpress/trunk@904 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
michelvaldrighi 2004-02-21 19:40:14 +00:00
parent 6d5891cb5d
commit a6ff56055a
1 changed files with 1 additions and 1 deletions

View File

@ -709,7 +709,7 @@ function upgrade_110() {
// Add blog_charset option
if(!$wpdb->get_var("SELECT * FROM $tableoptions WHERE option_id = '93'")) {
$wpdb->query("INSERT INTO $tableoptions (option_id, option_name, option_type, option_value, option_description, option_admin_level) VALUES (93, 'blog_charset', 3, 'utf-8', 'Your blog&#8217;s charset (here&#8217;s a <a href='http://developer.apple.com/documentation/macos8/TextIntlSvcs/TextEncodingConversionManager/TEC1.5/TEC.b0.html'>list of possible charsets</a>)', 8)");
$wpdb->query("INSERT INTO $tableoptions (option_id, option_name, option_type, option_value, option_description, option_admin_level) VALUES (93, 'blog_charset', 3, 'utf-8', 'Your blog&#8217;s charset (here&#8217;s a <a href=\"http://developer.apple.com/documentation/macos8/TextIntlSvcs/TextEncodingConversionManager/TEC1.5/TEC.b0.html\">list of possible charsets</a>)', 8)");
}
}