From f1e1c801ae8729a09087a1183ab8f681e4b58519 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: http://svn.automattic.com/wordpress/trunk@889 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 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 ;");