From 915cb42dc2e718f428c9acc4e19e7ccc440815ed Mon Sep 17 00:00:00 2001 From: Mike Little Date: Thu, 7 Aug 2003 06:49:17 +0000 Subject: [PATCH] Fixed SQL syntax error git-svn-id: https://develop.svn.wordpress.org/trunk@297 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/upgrade-071-to-072.php | 2 +- wp-admin/wp-install.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/upgrade-071-to-072.php b/wp-admin/upgrade-071-to-072.php index fb6839b2e9..6379531caf 100644 --- a/wp-admin/upgrade-071-to-072.php +++ b/wp-admin/upgrade-071-to-072.php @@ -581,7 +581,7 @@ $geo_option_data = array( "INSERT INTO $tableoptions (option_id, option_name, option_type, option_value, option_description, option_admin_level, option_width) VALUES(86,'default_geourl_lat ', 8, 0.0, 'The default Latitude ICBM value - see here', 8, 20)", "INSERT INTO $tableoptions (option_id, option_name, option_type, option_value, option_description, option_admin_level, option_width) VALUES(87,'default_geourl_lon', 8, 0.0, 'The default Longitude ICBM value', 8, 20)", -"INSERT INTO $tableoptiongroups (group_id, group_name, group_desc) VALUES(9,'Geo Options', 'Settings which control the posting and display of Geo Options')", +"INSERT INTO $tableoptiongroups (group_id, group_name, group_desc) VALUES(9, 'Geo Options', 'Settings which control the posting and display of Geo Options')", "INSERT INTO $tableoptiongroup_options (group_id, option_id, seq) VALUES(9,84,1)", "INSERT INTO $tableoptiongroup_options (group_id, option_id, seq) VALUES(9,85,1)", diff --git a/wp-admin/wp-install.php b/wp-admin/wp-install.php index 902af73a2e..1de41ecec7 100644 --- a/wp-admin/wp-install.php +++ b/wp-admin/wp-install.php @@ -630,7 +630,7 @@ $geo_option_data = array( "INSERT INTO $tableoptions (option_id, option_name, option_type, option_value, option_description, option_admin_level, option_width) VALUES(86,'default_geourl_lat ', 8, 0.0, 'The default Latitude ICBM value - see here', 8, 20)", "INSERT INTO $tableoptions (option_id, option_name, option_type, option_value, option_description, option_admin_level, option_width) VALUES(87,'default_geourl_lon', 8, 0.0, 'The default Longitude ICBM value', 8, 20)", -"INSERT INTO $tableoptiongroups (group_id, group_name, group_desc) VALUES(9,'Geo Options',Settings which control the posting and display of Geo Options')", +"INSERT INTO $tableoptiongroups (group_id, group_name, group_desc) VALUES(9,'Geo Options', 'Settings which control the posting and display of Geo Options')", "INSERT INTO $tableoptiongroup_options (group_id, option_id, seq) VALUES(9,84,1)", "INSERT INTO $tableoptiongroup_options (group_id, option_id, seq) VALUES(9,85,1)",