1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

Merge pull request #1753 from dhruvgoel92/ticket/11888

[ticket/11888] Use \phpbb\search\fulltext_native as search backend config
This commit is contained in:
Nathan Guse
2013-10-07 08:14:46 -07:00
2 changed files with 2 additions and 2 deletions

View File

@@ -23,7 +23,7 @@ class namespaces extends \phpbb\db\migration\migration
return array(
array('if', array(
(preg_match('#^phpbb_search_#', $this->config['search_type'])),
array('config.update', array('search_type', str_replace('phpbb_search_', 'phpbb\\search\\', $this->config['search_type']))),
array('config.update', array('search_type', str_replace('phpbb_search_', '\\phpbb\\search\\', $this->config['search_type']))),
)),
);
}