aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2010-02-18 02:06:20 +0000
committerAndreas Fischer <bantu@phpbb.com>2010-02-18 02:06:20 +0000
commit576722cead7f2de34db3e5a853662bca0e0601da (patch)
tree37a43fb360970b624e0d91e2e4c2b002cdffbbd3
parentc02fedb6c7a80da0be5bd84fe512b3ba6df9f9ee (diff)
downloadforums-576722cead7f2de34db3e5a853662bca0e0601da.tar
forums-576722cead7f2de34db3e5a853662bca0e0601da.tar.gz
forums-576722cead7f2de34db3e5a853662bca0e0601da.tar.bz2
forums-576722cead7f2de34db3e5a853662bca0e0601da.tar.xz
forums-576722cead7f2de34db3e5a853662bca0e0601da.zip
Adding 3.0.7-RC2 to database updater
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10504 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r--phpBB/install/database_update.php10
1 files changed, 8 insertions, 2 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php
index 5cb2cd28cc..4db78331bd 100644
--- a/phpBB/install/database_update.php
+++ b/phpBB/install/database_update.php
@@ -907,8 +907,10 @@ function database_update_info()
),
),
- // No changes from 3.0.7-RC1 to 3.0.7
+ // No changes from 3.0.7-RC1 to 3.0.7-RC2
'3.0.7-RC1' => array(),
+ // No changes from 3.0.7-RC2 to 3.0.7
+ '3.0.7-RC2' => array(),
);
}
@@ -1601,7 +1603,7 @@ function change_database_data(&$no_updates, $version)
$no_updates = false;
break;
- // Changes from 3.0.7-RC1 to 3.0.7
+ // Changes from 3.0.7-RC1 to 3.0.7-RC2
case '3.0.7-RC1':
$sql = 'SELECT user_id, user_email, user_email_hash
@@ -1634,6 +1636,10 @@ function change_database_data(&$no_updates, $version)
$no_updates = false;
break;
+
+ // No changes from 3.0.7-RC2 to 3.0.7
+ case '3.0.7-RC2':
+ break;
}
}