diff options
Diffstat (limited to 'phpBB/install/convertors/functions_phpbb20.php')
| -rw-r--r-- | phpBB/install/convertors/functions_phpbb20.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/install/convertors/functions_phpbb20.php b/phpBB/install/convertors/functions_phpbb20.php index 85960bfb70..7f51b90787 100644 --- a/phpBB/install/convertors/functions_phpbb20.php +++ b/phpBB/install/convertors/functions_phpbb20.php @@ -1714,10 +1714,10 @@ function phpbb_check_username_collisions() break; } - $db->return_on_error = true; + $db->sql_return_on_error(true); $db->sql_query($drop_sql); $db->sql_query($create_sql); - $db->return_on_error = false; + $db->sql_return_on_error(false); // now select all user_ids and usernames and then convert the username (this can take quite a while!) $sql = 'SELECT user_id, username |
