diff options
| author | Meik Sievertsen <acydburn@phpbb.com> | 2008-12-12 14:47:03 +0000 |
|---|---|---|
| committer | Meik Sievertsen <acydburn@phpbb.com> | 2008-12-12 14:47:03 +0000 |
| commit | 0481a574cedad6b0f09cb2d137e74da8f01bec47 (patch) | |
| tree | e665177edec38473d116620bba9959a448795f49 /phpBB/install/database_update.php | |
| parent | 5a0d7717f67578636acf8300f0ddf5b9a862ead4 (diff) | |
| download | forums-0481a574cedad6b0f09cb2d137e74da8f01bec47.tar forums-0481a574cedad6b0f09cb2d137e74da8f01bec47.tar.gz forums-0481a574cedad6b0f09cb2d137e74da8f01bec47.tar.bz2 forums-0481a574cedad6b0f09cb2d137e74da8f01bec47.tar.xz forums-0481a574cedad6b0f09cb2d137e74da8f01bec47.zip | |
Change version number from 3.0.4-RC1 to 3.0.4
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9187 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/database_update.php')
| -rw-r--r-- | phpBB/install/database_update.php | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index a0627a917f..fb37b62203 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -8,7 +8,7 @@ * */ -$updates_to_version = '3.0.4-RC1'; +$updates_to_version = '3.0.4'; // Return if we "just include it" to find out for which version the database update is responsible for if (defined('IN_PHPBB') && defined('IN_INSTALL')) @@ -587,6 +587,9 @@ $database_update_info = array( ), ), ), + + // Changes from 3.0.4-RC1 to 3.0.4 + '3.0.4-RC1' => array(), ); // Determine mapping database type @@ -2028,6 +2031,10 @@ function change_database_data(&$no_updates, $version) $no_updates = false; break; + + // Changes from 3.0.4-RC1 to 3.0.4 + case '3.0.4-RC1': + break; } } |
