diff options
| author | Meik Sievertsen <acydburn@phpbb.com> | 2008-06-21 14:30:56 +0000 |
|---|---|---|
| committer | Meik Sievertsen <acydburn@phpbb.com> | 2008-06-21 14:30:56 +0000 |
| commit | 008cccbefc574108d0d550ba10b740c188a86f4f (patch) | |
| tree | 4b258a58b9fdc77217f9fcf923f78b8cf829a701 /phpBB/install/database_update.php | |
| parent | 8e494d75991394d10412870d42e1874f8fe8e754 (diff) | |
| download | forums-008cccbefc574108d0d550ba10b740c188a86f4f.tar forums-008cccbefc574108d0d550ba10b740c188a86f4f.tar.gz forums-008cccbefc574108d0d550ba10b740c188a86f4f.tar.bz2 forums-008cccbefc574108d0d550ba10b740c188a86f4f.tar.xz forums-008cccbefc574108d0d550ba10b740c188a86f4f.zip | |
fix 3.0.1 to 3.0.2-RC1
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8662 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/database_update.php')
| -rw-r--r-- | phpBB/install/database_update.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index 43d8c06a27..184331976b 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -1770,7 +1770,12 @@ function change_database_data(&$no_updates, $version) $no_updates = false; break; + // No changes from 3.0.1-RC1 to 3.0.1 case '3.0.1-RC1': + break; + + // changes from 3.0.1 to 3.0.2-RC1 + case '3.0.1': set_config('referer_validation', '1'); set_config('check_attachment_content', '1'); @@ -1779,6 +1784,9 @@ function change_database_data(&$no_updates, $version) $no_updates = false; break; + // uncomment once RC1 out - no changes from 3.0.2-RC1 to 3.0.2 +// case '3.0.2-RC1': +// break; } } |
