aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2019-04-29 08:35:30 +0200
committerMarc Alexander <admin@m-a-styles.de>2019-04-29 08:35:30 +0200
commit055d7658db7817b80d00b27d6e99cad961d0ee15 (patch)
treeaa34996f9d7248e7c58d64361329685a64b21d91 /phpBB/install
parentbd2ddc1d2ec3e94a13e397198a8406d81481e9f2 (diff)
parent2575b499a38ccf2480d5da9d5c566f47a9e2d824 (diff)
downloadforums-055d7658db7817b80d00b27d6e99cad961d0ee15.tar
forums-055d7658db7817b80d00b27d6e99cad961d0ee15.tar.gz
forums-055d7658db7817b80d00b27d6e99cad961d0ee15.tar.bz2
forums-055d7658db7817b80d00b27d6e99cad961d0ee15.tar.xz
forums-055d7658db7817b80d00b27d6e99cad961d0ee15.zip
Merge branch 'prep-release-3.2.6' into 3.2.x
Diffstat (limited to 'phpBB/install')
-rwxr-xr-xphpBB/install/phpbbcli.php2
-rw-r--r--phpBB/install/schemas/schema_data.sql4
2 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/install/phpbbcli.php b/phpBB/install/phpbbcli.php
index c87a9a83ad..f8683d8f0f 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.2.6-RC1');
+define('PHPBB_VERSION', '3.2.6');
$phpbb_root_path = __DIR__ . '/../';
$phpEx = substr(strrchr(__FILE__, '.'), 1);
diff --git a/phpBB/install/schemas/schema_data.sql b/phpBB/install/schemas/schema_data.sql
index 13ce10d6e9..a9538afe47 100644
--- a/phpBB/install/schemas/schema_data.sql
+++ b/phpBB/install/schemas/schema_data.sql
@@ -269,9 +269,9 @@ INSERT INTO phpbb_config (config_name, config_value) VALUES ('smilies_per_page',
INSERT INTO phpbb_config (config_name, config_value) VALUES ('smtp_auth_method', 'PLAIN');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('smtp_delivery', '0');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('smtp_host', '');
-INSERT INTO phpbb_config (config_name, config_value) VALUES ('smtp_password', '');
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('smtp_password', '', 1);
INSERT INTO phpbb_config (config_name, config_value) VALUES ('smtp_port', '25');
-INSERT INTO phpbb_config (config_name, config_value) VALUES ('smtp_username', '');
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('smtp_username', '', 1);
INSERT INTO phpbb_config (config_name, config_value) VALUES ('teampage_memberships', '1');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('teampage_forums', '1');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('topics_per_page', '25');