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
This commit is contained in:
Meik Sievertsen 2008-06-21 14:30:56 +00:00
parent 8e494d7599
commit 008cccbefc

View file

@ -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;
}
}