From a6ff56055afcbdf9671558ed4cfca9492545feb3 Mon Sep 17 00:00:00 2001 From: michelvaldrighi Date: Sat, 21 Feb 2004 19:40:14 +0000 Subject: [PATCH] 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 --- wp-admin/upgrade-functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/upgrade-functions.php b/wp-admin/upgrade-functions.php index 1142bee0a..1b0427bd0 100644 --- a/wp-admin/upgrade-functions.php +++ b/wp-admin/upgrade-functions.php @@ -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’s charset (here’s a list of possible charsets)', 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’s charset (here’s a list of possible charsets)', 8)"); } }