diff options
| author | David Drury <ddrury@users.noreply.github.com> | 2021-02-13 12:54:47 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-13 12:54:47 +0000 |
| commit | 0ec592a70d173f5585dbaa22306abbf496a99995 (patch) | |
| tree | 49c153040dbb978605edd08cbc164c61e0b7d75f /app | |
| parent | 47a2bfb7896808683fff73f98657acf5d417843c (diff) | |
| download | webtrees-0ec592a70d173f5585dbaa22306abbf496a99995.tar.gz webtrees-0ec592a70d173f5585dbaa22306abbf496a99995.tar.bz2 webtrees-0ec592a70d173f5585dbaa22306abbf496a99995.zip | |
Missed in recent changes (#3723)
Diffstat (limited to 'app')
| -rw-r--r-- | app/Fact.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Fact.php b/app/Fact.php index 42d80c44d1..d4a8b9e88e 100644 --- a/app/Fact.php +++ b/app/Fact.php @@ -283,7 +283,7 @@ class Fact return $gedcom_service->readLatitude($match[1]); } - return 0.0; + return null; } /** @@ -299,7 +299,7 @@ class Fact return $gedcom_service->readLongitude($match[1]); } - return 0.0; + return null; } /** |
