summaryrefslogtreecommitdiff
path: root/app/Controller
diff options
context:
space:
mode:
Diffstat (limited to 'app/Controller')
-rw-r--r--app/Controller/SearchController.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Controller/SearchController.php b/app/Controller/SearchController.php
index 946c3875cb..97171ff3a4 100644
--- a/app/Controller/SearchController.php
+++ b/app/Controller/SearchController.php
@@ -17,7 +17,7 @@ namespace Fisharebest\Webtrees\Controller;
*/
use Fisharebest\Webtrees\Auth;
-use Fisharebest\Webtrees\ConfigData;
+use Fisharebest\Webtrees\Config;
use Fisharebest\Webtrees\Family;
use Fisharebest\Webtrees\Filter;
use Fisharebest\Webtrees\FlashMessages;
@@ -311,7 +311,7 @@ class SearchController extends PageController {
Log::addEditLog("Search And Replace old:" . $this->query . " new:" . $this->replace);
$adv_name_tags = preg_split("/[\s,;: ]+/", $tree->getPreference('ADVANCED_NAME_FACTS'));
- $name_tags = array_unique(array_merge(ConfigData::standardNameFacts(), $adv_name_tags));
+ $name_tags = array_unique(array_merge(Config::standardNameFacts(), $adv_name_tags));
$name_tags[] = '_MARNM';
$records_updated = 0;
foreach ($this->myindilist as $id => $record) {