aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/database_update.php
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2015-01-26 18:57:06 +0100
committerNils Adermann <naderman@naderman.de>2015-01-26 18:57:06 +0100
commitebd5aace3fd556d6b588b07329a7eed37997045b (patch)
tree9429e387112fa2e701eef6555d860499f3f989f2 /phpBB/install/database_update.php
parent4c11ea97d56e759cb3d1bc047a56f92a060f7124 (diff)
parent5ce89ae82f7be38ef539872dc1fd360fb45c906a (diff)
downloadforums-ebd5aace3fd556d6b588b07329a7eed37997045b.tar
forums-ebd5aace3fd556d6b588b07329a7eed37997045b.tar.gz
forums-ebd5aace3fd556d6b588b07329a7eed37997045b.tar.bz2
forums-ebd5aace3fd556d6b588b07329a7eed37997045b.tar.xz
forums-ebd5aace3fd556d6b588b07329a7eed37997045b.zip
Merge branch 'prep-release-3.0.13' into develop-olympus
* prep-release-3.0.13: [prep-release-3.0.13] Bump version numbers for 3.0.13 release [prep-release-3.0.13] Highlight security relevant changes Conflicts: build/build.xml phpBB/includes/constants.php phpBB/install/database_update.php phpBB/install/schemas/schema_data.sql
Diffstat (limited to 'phpBB/install/database_update.php')
-rw-r--r--phpBB/install/database_update.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php
index 8e5b5969ad..5c0ead437d 100644
--- a/phpBB/install/database_update.php
+++ b/phpBB/install/database_update.php
@@ -1013,6 +1013,8 @@ function database_update_info()
'3.0.12-RC3' => array(),
// No changes from 3.0.12 to 3.0.13-RC1
'3.0.12' => array(),
+ // No changes from 3.0.13-RC1 to 3.0.13
+ '3.0.13-RC1' => array(),
/** @todo DROP LOGIN_ATTEMPT_TABLE.attempt_id in 3.0.14-RC1 */
);
@@ -2260,6 +2262,10 @@ function change_database_data(&$no_updates, $version)
// No changes from 3.0.12 to 3.0.13-RC1
case '3.0.12':
break;
+
+ // No changes from 3.0.13-RC1 to 3.0.13
+ case '3.0.13-RC1':
+ break;
}
}