From 6c3532761bbbcb26cd4186e8b204d62a7391d331 Mon Sep 17 00:00:00 2001 From: Meik Sievertsen Date: Wed, 6 May 2009 08:38:30 +0000 Subject: slight change for 3.0.5 for updating. - only return auth options having 2 or more columns (does not change the outcome, the script works fine) - purge the theme after a successful update the easy way to let style.php do the job git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9510 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/install/database_update.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'phpBB/install/database_update.php') diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index ee28799694..60a20920bb 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -943,7 +943,7 @@ function change_database_data(&$no_updates, $version) $sql = 'SELECT auth_option FROM ' . ACL_OPTIONS_TABLE . ' GROUP BY auth_option - HAVING COUNT(*) >= 1'; + HAVING COUNT(*) >= 2'; $result = $db->sql_query($sql); $auth_options = array(); -- cgit v1.2.1