diff options
| author | Graham Eames <grahamje@users.sourceforge.net> | 2006-09-23 12:27:51 +0000 |
|---|---|---|
| committer | Graham Eames <grahamje@users.sourceforge.net> | 2006-09-23 12:27:51 +0000 |
| commit | cbece78f7b180253af95071ab859c468ed061ff5 (patch) | |
| tree | 420dcaac9aadf3144a4a65ced3f1bd25be10054e /phpBB/install/install_install.php | |
| parent | 36fa521f9230d2b2a8bbb6dc79185cfc17112f39 (diff) | |
| download | forums-cbece78f7b180253af95071ab859c468ed061ff5.tar forums-cbece78f7b180253af95071ab859c468ed061ff5.tar.gz forums-cbece78f7b180253af95071ab859c468ed061ff5.tar.bz2 forums-cbece78f7b180253af95071ab859c468ed061ff5.tar.xz forums-cbece78f7b180253af95071ab859c468ed061ff5.zip | |
A reworking of how we handle inactive users
git-svn-id: file:///svn/phpbb/trunk@6394 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/install_install.php')
| -rwxr-xr-x | phpBB/install/install_install.php | 6 |
1 files changed, 3 insertions, 3 deletions
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; |
