aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/database_update.php
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2010-03-02 01:05:41 +0100
committerNils Adermann <naderman@naderman.de>2010-03-02 01:05:41 +0100
commit6606e4bffe91637701499afef34e9c847aa3a3b0 (patch)
tree57ff80146af23c0c8e7b159718d3ef78dd4fe6b7 /phpBB/install/database_update.php
parent723e38ece20f7a7a3611b86a4feafeb28560ce02 (diff)
parent338559baca27ef4954898b824845d51bc536c9a6 (diff)
downloadforums-6606e4bffe91637701499afef34e9c847aa3a3b0.tar
forums-6606e4bffe91637701499afef34e9c847aa3a3b0.tar.gz
forums-6606e4bffe91637701499afef34e9c847aa3a3b0.tar.bz2
forums-6606e4bffe91637701499afef34e9c847aa3a3b0.tar.xz
forums-6606e4bffe91637701499afef34e9c847aa3a3b0.zip
Merge commit 'release-3.0.6'
Diffstat (limited to 'phpBB/install/database_update.php')
-rw-r--r--phpBB/install/database_update.php8
1 files changed, 7 insertions, 1 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php
index e3511e89a4..5eeb449019 100644
--- a/phpBB/install/database_update.php
+++ b/phpBB/install/database_update.php
@@ -8,7 +8,7 @@
*
*/
-$updates_to_version = '3.0.6-RC4';
+$updates_to_version = '3.0.6';
// Enter any version to update from to test updates. The version within the db will not be updated.
$debug_from_version = false;
@@ -891,6 +891,8 @@ function database_update_info()
'3.0.6-RC2' => array(),
// No changes from 3.0.6-RC3 to 3.0.6-RC4
'3.0.6-RC3' => array(),
+ // No changes from 3.0.6-RC4 to 3.0.6
+ '3.0.6-RC4' => array(),
);
}
@@ -1559,6 +1561,10 @@ function change_database_data(&$no_updates, $version)
// No changes from 3.0.6-RC3 to 3.0.6-RC4
case '3.0.6-RC3':
break;
+
+ // No changes from 3.0.6-RC4 to 3.0.6
+ case '3.0.6-RC4':
+ break;
}
}