aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2008-12-12 14:47:03 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2008-12-12 14:47:03 +0000
commit0481a574cedad6b0f09cb2d137e74da8f01bec47 (patch)
treee665177edec38473d116620bba9959a448795f49
parent5a0d7717f67578636acf8300f0ddf5b9a862ead4 (diff)
downloadforums-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
-rw-r--r--phpBB/includes/constants.php2
-rw-r--r--phpBB/install/database_update.php9
-rw-r--r--phpBB/install/schemas/schema_data.sql2
3 files changed, 10 insertions, 3 deletions
diff --git a/phpBB/includes/constants.php b/phpBB/includes/constants.php
index 61c1c963b8..2210b6f8a5 100644
--- a/phpBB/includes/constants.php
+++ b/phpBB/includes/constants.php
@@ -25,7 +25,7 @@ if (!defined('IN_PHPBB'))
*/
// phpBB Version
-define('PHPBB_VERSION', '3.0.4-RC1');
+define('PHPBB_VERSION', '3.0.4');
// QA-related
// define('PHPBB_QA', 1);
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;
}
}
diff --git a/phpBB/install/schemas/schema_data.sql b/phpBB/install/schemas/schema_data.sql
index f469436e00..1e2669aeb5 100644
--- a/phpBB/install/schemas/schema_data.sql
+++ b/phpBB/install/schemas/schema_data.sql
@@ -218,7 +218,7 @@ INSERT INTO phpbb_config (config_name, config_value) VALUES ('topics_per_page',
INSERT INTO phpbb_config (config_name, config_value) VALUES ('tpl_allow_php', '0');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('upload_icons_path', 'images/upload_icons');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('upload_path', 'files');
-INSERT INTO phpbb_config (config_name, config_value) VALUES ('version', '3.0.4-RC1');
+INSERT INTO phpbb_config (config_name, config_value) VALUES ('version', '3.0.4');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('warnings_expire_days', '90');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('warnings_gc', '14400');