diff options
| author | Greg Roach <fisharebest@gmail.com> | 2015-06-06 23:04:00 +0100 |
|---|---|---|
| committer | Greg Roach <fisharebest@gmail.com> | 2015-06-06 23:04:00 +0100 |
| commit | 4c12f25d26c4cc371bdaa9053eba7643596e3658 (patch) | |
| tree | 3babb95393ef2acc690f6049a7b844c7c3afa1a0 /app/Controller | |
| parent | a9991969b1be0551d65aa54b3c4963533db1a455 (diff) | |
| download | webtrees-4c12f25d26c4cc371bdaa9053eba7643596e3658.tar.gz webtrees-4c12f25d26c4cc371bdaa9053eba7643596e3658.tar.bz2 webtrees-4c12f25d26c4cc371bdaa9053eba7643596e3658.zip | |
ConfigData => Config
Diffstat (limited to 'app/Controller')
| -rw-r--r-- | app/Controller/SearchController.php | 4 |
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) { |
