diff options
| author | Meik Sievertsen <acydburn@phpbb.com> | 2006-12-15 14:54:52 +0000 |
|---|---|---|
| committer | Meik Sievertsen <acydburn@phpbb.com> | 2006-12-15 14:54:52 +0000 |
| commit | 2e4cd16058cc548068a94047c9c31e5a9ad272d0 (patch) | |
| tree | 5e2bceadc56306b886482703702b0f21a0aba3a1 /phpBB/install/database_update.php | |
| parent | 11e70be6edd39fb0956541117e8bf327c94f651e (diff) | |
| download | forums-2e4cd16058cc548068a94047c9c31e5a9ad272d0.tar forums-2e4cd16058cc548068a94047c9c31e5a9ad272d0.tar.gz forums-2e4cd16058cc548068a94047c9c31e5a9ad272d0.tar.bz2 forums-2e4cd16058cc548068a94047c9c31e5a9ad272d0.tar.xz forums-2e4cd16058cc548068a94047c9c31e5a9ad272d0.zip | |
- fixed bug within the database update script
- #6254
- #6242
- #6184
- #6160
- #6020
git-svn-id: file:///svn/phpbb/trunk@6770 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/database_update.php')
| -rw-r--r-- | phpBB/install/database_update.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index 5717dbc4d2..ae52373609 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -488,7 +488,7 @@ flush(); $no_updates = true; // some code magic -if (version_compare($current_version, '3.0.b3', '<')) +if (version_compare($current_version, '3.0.b3', '<=')) { // Set group_founder_manage for administrators group $sql = 'SELECT group_id @@ -510,7 +510,7 @@ if (version_compare($current_version, '3.0.b3', '<')) $no_updates = false; } -if (version_compare($current_version, '3.0.b4', '<')) +if (version_compare($current_version, '3.0.b4', '<=')) { // Add config values set_config('script_path', '/'); |
