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)"); } }