From 4382e7bddf3fa9f9d07624aab12c0806c50d767e Mon Sep 17 00:00:00 2001 From: michelvaldrighi Date: Tue, 17 Feb 2004 18:13:48 +0000 Subject: [PATCH] whoops, forgot two globals git-svn-id: https://develop.svn.wordpress.org/trunk@889 602fd350-edb4-49c9-b593-d223f7449a82 --- 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 edb033a1cc..6d13c80244 100644 --- a/wp-admin/upgrade-functions.php +++ b/wp-admin/upgrade-functions.php @@ -673,7 +673,7 @@ function upgrade_101() { } function upgrade_110() { - global $wpdb, $tableusers, $tablecomments, $tableposts, $tableoptiongroups; + global $wpdb, $tableusers, $tablecomments, $tableposts, $tableoptiongroups, $tableoptiongroup_options, $tableoptions; maybe_add_column($tablecomments, 'user_id', "ALTER TABLE `$tablecomments` ADD `user_id` INT DEFAULT '0' NOT NULL ;"); maybe_add_column($tableusers, 'user_activation_key', "ALTER TABLE `$tableusers` ADD `user_activation_key` VARCHAR( 60 ) NOT NULL ;");