From cbece78f7b180253af95071ab859c468ed061ff5 Mon Sep 17 00:00:00 2001 From: Graham Eames Date: Sat, 23 Sep 2006 12:27:51 +0000 Subject: A reworking of how we handle inactive users git-svn-id: file:///svn/phpbb/trunk@6394 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/install/install_install.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'phpBB/install/install_install.php') diff --git a/phpBB/install/install_install.php b/phpBB/install/install_install.php index aec12abb5a..74b8b52fc6 100755 --- a/phpBB/install/install_install.php +++ b/phpBB/install/install_install.php @@ -1357,7 +1357,7 @@ class install_install extends module $_module->move_module_by($row, 'move_up', 4); - // Move manage users screen module 4 up... + // Move manage users screen module 5 up... $sql = 'SELECT * FROM ' . MODULES_TABLE . " WHERE module_basename = 'users' @@ -1367,7 +1367,7 @@ class install_install extends module $row = $db->sql_fetchrow($result); $db->sql_freeresult($result); - $_module->move_module_by($row, 'move_up', 4); + $_module->move_module_by($row, 'move_up', 5); } // And now for the special ones @@ -1667,13 +1667,13 @@ class install_install extends module break; - case 'oracle': case 'sqlite': $prefix_length = 200; break; case 'firebird': + case 'oracle': $prefix_length = 6; break; -- cgit v1.2.1