1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-09 09:05:23 +02:00

[ticket/10561] Changed $temp_style_id to $style_id

PHPBB3-10561
This commit is contained in:
Hari Sankar R 2012-04-09 01:04:17 +05:30
parent 9bce716081
commit 8442b19e59

View File

@ -2036,9 +2036,9 @@ function change_database_data(&$no_updates, $version)
$result = $db->sql_query($sql);
$deactivated_style_ids = array();
while ($temp_style_id = $db->sql_fetchfield('style_id', false, $result))
while ($style_id = $db->sql_fetchfield('style_id', false, $result))
{
$deactivated_style_ids[] = (int) $temp_style_id;
$deactivated_style_ids[] = (int) $style_id;
}
$db->sql_freeresult($result);