diff options
Diffstat (limited to 'modules_v3/GEDFact_assistant/module.php')
| -rw-r--r-- | modules_v3/GEDFact_assistant/module.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules_v3/GEDFact_assistant/module.php b/modules_v3/GEDFact_assistant/module.php index fea3f4f803..e7286336bf 100644 --- a/modules_v3/GEDFact_assistant/module.php +++ b/modules_v3/GEDFact_assistant/module.php @@ -1,5 +1,5 @@ <?php -namespace Webtrees; +namespace Fisharebest\Webtrees; /** * webtrees: online genealogy @@ -129,7 +129,7 @@ class GEDFact_assistant_WT_Module extends Module { $myindilist = search_indis_names($filter_array, array(WT_GED_ID), 'AND'); if ($myindilist) { echo "<td class=\"list_value_wrap\"><ul>"; - usort($myindilist, 'Webtrees\GedcomRecord::compare'); + usort($myindilist, __NAMESPACE__ . '\GedcomRecord::compare'); foreach ($myindilist as $indi) { $nam = Filter::escapeHtml($indi->getFullName()); echo "<li><a href=\"#\" onclick=\"pasterow( |
