1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-04-20 07:42:09 +02:00

[ticket/16643] Remove dbms_version config setting

PHPBB3-16643
This commit is contained in:
Máté Bartus 2021-01-31 14:21:37 +01:00
parent 2a57477718
commit 0f7b89838a
5 changed files with 38 additions and 10 deletions

View File

@ -690,12 +690,6 @@ class acp_main
]);
}
// Fill dbms version if not yet filled
if (empty($config['dbms_version']))
{
$config->set('dbms_version', $db->sql_server_info(true));
}
$this->tpl_name = 'acp_main';
$this->page_title = 'ACP_MAIN';
}

View File

@ -326,7 +326,6 @@ class phpbb_questionnaire_phpbb_data_provider
'cookie_secure' => true,
'coppa_enable' => true,
'database_gc' => true,
'dbms_version' => true,
'default_dateformat' => true,
'default_lang' => true,
'display_last_edited' => true,

View File

@ -94,7 +94,6 @@ INSERT INTO phpbb_config (config_name, config_value) VALUES ('coppa_enable', '0'
INSERT INTO phpbb_config (config_name, config_value) VALUES ('coppa_fax', '');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('coppa_mail', '');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('database_gc', '604800');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('dbms_version', '');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('default_dateformat', 'D M d, Y g:i a');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('default_lang', 'en');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('default_search_return_chars', '300');

View File

@ -0,0 +1,38 @@
<?php
/**
*
* This file is part of the phpBB Forum Software package.
*
* @copyright (c) phpBB Limited <https://www.phpbb.com>
* @license GNU General Public License, version 2 (GPL-2.0)
*
* For full copyright and license information, please see
* the docs/CREDITS.txt file.
*
*/
namespace phpbb\db\migration\data\v400;
use phpbb\db\migration\migration;
class remove_dbms_version_config extends migration
{
public function effectively_installed()
{
return !$this->config->offsetExists('dbms_version');
}
public function update_data()
{
return [
['config.remove', ['dbms_version']],
];
}
static public function depends_on()
{
return [
'\phpbb\db\migration\data\v30x\release_3_0_3_rc1',
];
}
}

View File

@ -164,8 +164,6 @@ class add_config_settings extends database_task
'sitename' => $this->install_config->get('board_name'),
'site_desc' => $this->install_config->get('board_description'),
'dbms_version' => $this->db->sql_server_info(true),
];
if (@extension_loaded('gd'))