aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--phpBB/install/database_update.php9
1 files changed, 8 insertions, 1 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php
index bf9c183e0c..acbc241c4d 100644
--- a/phpBB/install/database_update.php
+++ b/phpBB/install/database_update.php
@@ -8,7 +8,7 @@
*
*/
-$updates_to_version = '3.0.6';
+$updates_to_version = '3.0.7-dev';
// Enter any version to update from to test updates. The version within the db will not be updated.
$debug_from_version = false;
@@ -897,6 +897,9 @@ function database_update_info()
'3.0.6-RC3' => array(),
// No changes from 3.0.6-RC4 to 3.0.6
'3.0.6-RC4' => array(),
+
+ // No changes from 3.0.6 to 3.0.7-RC1
+ '3.0.6' => array(),
);
}
@@ -1569,6 +1572,10 @@ function change_database_data(&$no_updates, $version)
// No changes from 3.0.6-RC4 to 3.0.6
case '3.0.6-RC4':
break;
+
+ // No changes from 3.0.6 to 3.0.7-RC1
+ case '3.0.6':
+ break;
}
}