1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-19 06:51:33 +02:00

[ticket/10737] Add config setting to disable live searches.

PHPBB3-10737
This commit is contained in:
Cesar G
2014-04-11 19:23:31 -07:00
parent 683e8c0c17
commit 607698c884
6 changed files with 33 additions and 3 deletions

View File

@@ -0,0 +1,25 @@
<?php
/**
*
* @package migration
* @copyright (c) 2014 phpBB Group
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
*
*/
namespace phpbb\db\migration\data\v310;
class live_searches_config extends \phpbb\db\migration\migration
{
public function effectively_installed()
{
return isset($this->config['allow_live_searches']);
}
public function update_data()
{
return array(
array('config.add', array('allow_live_searches', '1')),
);
}
}