[ticket/10561] Removed extra tabs, changes made to $db->sql_query()

Substituted $db->sql_query() with _sql()

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

View file

@ -2047,7 +2047,7 @@ function change_database_data(&$no_updates, $version)
$sql = 'UPDATE ' . USERS_TABLE . '
SET user_style = ' . (int) $config['default_style'] .'
WHERE ' . $db->sql_in_set('user_style', $deactivated_style_ids);
$result = $db->sql_query($sql);
_sql($sql, $errored, $error_ary);
}
$no_updates = false;