diff options
| -rw-r--r-- | app/GedcomRecord.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/GedcomRecord.php b/app/GedcomRecord.php index d8671c64de..5150e12d99 100644 --- a/app/GedcomRecord.php +++ b/app/GedcomRecord.php @@ -784,7 +784,7 @@ class GedcomRecord $access_level = $access_level ?? Auth::accessLevel($this->tree); // Convert BIRT into INDI:BIRT, etc. - $filter = array_map(fn(string $tag): string => $this->tag() . ':' . $tag, $filter); + $filter = array_map(fn (string $tag): string => $this->tag() . ':' . $tag, $filter); $facts = new Collection(); if ($this->canShow($access_level)) { |
