aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install
diff options
context:
space:
mode:
authorHari Sankar R <hsr@theinglorio.us>2012-04-07 23:15:12 +0530
committerHari Sankar R <hsr@theinglorio.us>2012-04-07 23:15:12 +0530
commit03a35581c4b0dcb7c20885d4ca807ea7117872cb (patch)
treefc38d54c16d9f1d1f9f310c9fea2634fd211d0dc /phpBB/install
parent1808a61fe3e89399aec4ecced36e270faa7d0beb (diff)
downloadforums-03a35581c4b0dcb7c20885d4ca807ea7117872cb.tar
forums-03a35581c4b0dcb7c20885d4ca807ea7117872cb.tar.gz
forums-03a35581c4b0dcb7c20885d4ca807ea7117872cb.tar.bz2
forums-03a35581c4b0dcb7c20885d4ca807ea7117872cb.tar.xz
forums-03a35581c4b0dcb7c20885d4ca807ea7117872cb.zip
[ticket/10561] Reverted to phpbb_style_is_active()
Changes made to function name, reverted to old. PHPBB3-10561
Diffstat (limited to 'phpBB/install')
-rw-r--r--phpBB/install/database_update.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php
index 096d90219b..8f00b18846 100644
--- a/phpBB/install/database_update.php
+++ b/phpBB/install/database_update.php
@@ -2030,18 +2030,18 @@ function change_database_data(&$no_updates, $version)
// Changes from 3.0.10 to 3.0.11-RC1
case '3.0.10':
// Updates users having current style a deactivated one
- $deactivated_style_ids = array();
$sql = 'SELECT style_id
FROM ' . STYLES_TABLE . '
WHERE style_active = 0';
$result = $db->sql_query($sql);
+ $deactivated_style_ids = array();
while ($temp_style_id = $db->sql_fetchfield('style_id', false, $result))
{
$deactivated_style_ids[] = (int) $temp_style_id;
}
-
$db->sql_freeresult($result);
+
if (!empty($deactivated_style_ids))
{
$sql = 'UPDATE ' . USERS_TABLE . '
@@ -2049,6 +2049,7 @@ function change_database_data(&$no_updates, $version)
WHERE ' . $db->sql_in_set('user_style', $deactivated_style_ids);
$result = $db->sql_query($sql);
}
+
$no_updates = false;
break;
}