aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/db/migration
diff options
context:
space:
mode:
authorDhruv <dhruv.goel92@gmail.com>2013-10-06 10:38:11 +0530
committerDhruv <dhruv.goel92@gmail.com>2013-10-06 10:38:11 +0530
commitda1edb4578ab66265c1a846180b1123bbb889c72 (patch)
treef130b66fe22b7feba6ca146ac6607355b0fa3cd3 /phpBB/phpbb/db/migration
parented19176aaf9cf29e70505ddbeae7f8986c201f66 (diff)
downloadforums-da1edb4578ab66265c1a846180b1123bbb889c72.tar
forums-da1edb4578ab66265c1a846180b1123bbb889c72.tar.gz
forums-da1edb4578ab66265c1a846180b1123bbb889c72.tar.bz2
forums-da1edb4578ab66265c1a846180b1123bbb889c72.tar.xz
forums-da1edb4578ab66265c1a846180b1123bbb889c72.zip
[ticket/11888] Update default search backend in namespaces migration
PHPBB3-11888
Diffstat (limited to 'phpBB/phpbb/db/migration')
-rw-r--r--phpBB/phpbb/db/migration/data/v310/namespaces.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/db/migration/data/v310/namespaces.php b/phpBB/phpbb/db/migration/data/v310/namespaces.php
index 9b182f88b8..f74ecbd874 100644
--- a/phpBB/phpbb/db/migration/data/v310/namespaces.php
+++ b/phpBB/phpbb/db/migration/data/v310/namespaces.php
@@ -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']))),
)),
);
}