summaryrefslogtreecommitdiff
path: root/modules_v3/batch_update
diff options
context:
space:
mode:
Diffstat (limited to 'modules_v3/batch_update')
-rw-r--r--modules_v3/batch_update/BatchUpdateBasePlugin.php2
-rw-r--r--modules_v3/batch_update/BatchUpdateDuplicateLinksPlugin.php2
-rw-r--r--modules_v3/batch_update/BatchUpdateMarriedNamesPlugin.php2
-rw-r--r--modules_v3/batch_update/BatchUpdateMissingDeathPlugin.php2
-rw-r--r--modules_v3/batch_update/BatchUpdateNameFormatPlugin.php2
-rw-r--r--modules_v3/batch_update/BatchUpdateSearchReplacePlugin.php2
-rw-r--r--modules_v3/batch_update/module.php4
7 files changed, 8 insertions, 8 deletions
diff --git a/modules_v3/batch_update/BatchUpdateBasePlugin.php b/modules_v3/batch_update/BatchUpdateBasePlugin.php
index 38ea114c09..a2c4fcf48c 100644
--- a/modules_v3/batch_update/BatchUpdateBasePlugin.php
+++ b/modules_v3/batch_update/BatchUpdateBasePlugin.php
@@ -1,5 +1,5 @@
<?php
-namespace Webtrees;
+namespace Fisharebest\Webtrees;
/**
* webtrees: online genealogy
diff --git a/modules_v3/batch_update/BatchUpdateDuplicateLinksPlugin.php b/modules_v3/batch_update/BatchUpdateDuplicateLinksPlugin.php
index 9bca845a6a..16a7542c8d 100644
--- a/modules_v3/batch_update/BatchUpdateDuplicateLinksPlugin.php
+++ b/modules_v3/batch_update/BatchUpdateDuplicateLinksPlugin.php
@@ -1,5 +1,5 @@
<?php
-namespace Webtrees;
+namespace Fisharebest\Webtrees;
/**
* webtrees: online genealogy
diff --git a/modules_v3/batch_update/BatchUpdateMarriedNamesPlugin.php b/modules_v3/batch_update/BatchUpdateMarriedNamesPlugin.php
index 6ab0ec8582..58a4453c1f 100644
--- a/modules_v3/batch_update/BatchUpdateMarriedNamesPlugin.php
+++ b/modules_v3/batch_update/BatchUpdateMarriedNamesPlugin.php
@@ -1,5 +1,5 @@
<?php
-namespace Webtrees;
+namespace Fisharebest\Webtrees;
/**
* webtrees: online genealogy
diff --git a/modules_v3/batch_update/BatchUpdateMissingDeathPlugin.php b/modules_v3/batch_update/BatchUpdateMissingDeathPlugin.php
index 625ecbe241..50ff0a56f4 100644
--- a/modules_v3/batch_update/BatchUpdateMissingDeathPlugin.php
+++ b/modules_v3/batch_update/BatchUpdateMissingDeathPlugin.php
@@ -1,5 +1,5 @@
<?php
-namespace Webtrees;
+namespace Fisharebest\Webtrees;
/**
* webtrees: online genealogy
diff --git a/modules_v3/batch_update/BatchUpdateNameFormatPlugin.php b/modules_v3/batch_update/BatchUpdateNameFormatPlugin.php
index 1a4bfc7271..c3728070d0 100644
--- a/modules_v3/batch_update/BatchUpdateNameFormatPlugin.php
+++ b/modules_v3/batch_update/BatchUpdateNameFormatPlugin.php
@@ -1,5 +1,5 @@
<?php
-namespace Webtrees;
+namespace Fisharebest\Webtrees;
/**
* webtrees: online genealogy
diff --git a/modules_v3/batch_update/BatchUpdateSearchReplacePlugin.php b/modules_v3/batch_update/BatchUpdateSearchReplacePlugin.php
index 4781910adb..d0706f96f4 100644
--- a/modules_v3/batch_update/BatchUpdateSearchReplacePlugin.php
+++ b/modules_v3/batch_update/BatchUpdateSearchReplacePlugin.php
@@ -1,5 +1,5 @@
<?php
-namespace Webtrees;
+namespace Fisharebest\Webtrees;
/**
* webtrees: online genealogy
diff --git a/modules_v3/batch_update/module.php b/modules_v3/batch_update/module.php
index 00f06c4ada..13e9d0f8d6 100644
--- a/modules_v3/batch_update/module.php
+++ b/modules_v3/batch_update/module.php
@@ -1,5 +1,5 @@
<?php
-namespace Webtrees;
+namespace Fisharebest\Webtrees;
/**
* webtrees: online genealogy
@@ -305,7 +305,7 @@ class batch_update_WT_Module extends Module implements ModuleConfigInterface {
$dir_handle = opendir(__DIR__);
while ($file = readdir($dir_handle)) {
if (substr($file, -10) == 'Plugin.php' && $file !== 'BatchUpdateBasePlugin.php') {
- $class = 'Webtrees\\' . basename($file, '.php');
+ $class = __NAMESPACE__ . '\\' . basename($file, '.php');
$plugins[$class] = new $class;
}
}