aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install
diff options
context:
space:
mode:
authorTristan Darricau <tristan.darricau@sensiolabs.com>2016-04-02 12:09:31 +0200
committerTristan Darricau <tristan.darricau@sensiolabs.com>2016-04-02 12:09:31 +0200
commit28ba2d4494f37382a2519571a0398b1c4b937f08 (patch)
treecedaeb6f644cb50c3efe0b9dda6a9803ccc68971 /phpBB/install
parent79a8d48c3cb678a0ef3b36c7e8bfdd4950152486 (diff)
parent83b56f7855bcd43dd73499c90c5f9fedf127da0e (diff)
downloadforums-28ba2d4494f37382a2519571a0398b1c4b937f08.tar
forums-28ba2d4494f37382a2519571a0398b1c4b937f08.tar.gz
forums-28ba2d4494f37382a2519571a0398b1c4b937f08.tar.bz2
forums-28ba2d4494f37382a2519571a0398b1c4b937f08.tar.xz
forums-28ba2d4494f37382a2519571a0398b1c4b937f08.zip
Merge pull request #4274 from marc1706/ticket/14495
[ticket/14495] Specify correct version numbers in 3.2.x * marc1706/ticket/14495: [ticket/14495] Specify correct version numbers in 3.2.x
Diffstat (limited to 'phpBB/install')
-rw-r--r--phpBB/install/convertors/convert_phpbb20.php2
-rwxr-xr-xphpBB/install/phpbbcli.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/install/convertors/convert_phpbb20.php b/phpBB/install/convertors/convert_phpbb20.php
index d0885dc620..977670c94c 100644
--- a/phpBB/install/convertors/convert_phpbb20.php
+++ b/phpBB/install/convertors/convert_phpbb20.php
@@ -38,7 +38,7 @@ $dbms = $phpbb_config_php_file->convert_30_dbms_to_31($dbms);
$convertor_data = array(
'forum_name' => 'phpBB 2.0.x',
'version' => '1.0.3',
- 'phpbb_version' => '3.3.0-a1-dev',
+ 'phpbb_version' => '3.2.0-b3-dev',
'author' => '<a href="https://www.phpbb.com/">phpBB Limited</a>',
'dbms' => $dbms,
'dbhost' => $dbhost,
diff --git a/phpBB/install/phpbbcli.php b/phpBB/install/phpbbcli.php
index 4b86f64e2a..87eab84b5a 100755
--- a/phpBB/install/phpbbcli.php
+++ b/phpBB/install/phpbbcli.php
@@ -23,7 +23,7 @@ if (php_sapi_name() !== 'cli')
define('IN_PHPBB', true);
define('IN_INSTALL', true);
define('PHPBB_ENVIRONMENT', 'production');
-define('PHPBB_VERSION', '3.3.0-a1-dev');
+define('PHPBB_VERSION', '3.2.0-b3-dev');
$phpbb_root_path = __DIR__ . '/../';
$phpEx = substr(strrchr(__FILE__, '.'), 1);