summaryrefslogtreecommitdiff
path: root/resources/views/modules/todays_events/list.phtml
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@webtrees.net>2019-01-27 22:58:40 +0000
committerGreg Roach <fisharebest@webtrees.net>2019-01-27 23:17:30 +0000
commit392561bb99af217275768e5e324d4700af01ce3e (patch)
treec5b27fb099155c3be24d6c50edefd26a0f60dadf /resources/views/modules/todays_events/list.phtml
parentead61980531901585812230435477067158ac121 (diff)
downloadwebtrees-392561bb99af217275768e5e324d4700af01ce3e.tar.gz
webtrees-392561bb99af217275768e5e324d4700af01ce3e.tar.bz2
webtrees-392561bb99af217275768e5e324d4700af01ce3e.zip
Refactor class Place
Diffstat (limited to 'resources/views/modules/todays_events/list.phtml')
-rw-r--r--resources/views/modules/todays_events/list.phtml2
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/views/modules/todays_events/list.phtml b/resources/views/modules/todays_events/list.phtml
index a3796f2450..2926991a3e 100644
--- a/resources/views/modules/todays_events/list.phtml
+++ b/resources/views/modules/todays_events/list.phtml
@@ -13,7 +13,7 @@
<?= $fact->label() . ' — ' . $fact->date()->display(true); ?>
<?= ' (' . I18N::timeAgo($fact->anniv * 365 * 24 * 60 * 60) . ')'; ?>
<?php if (!$fact->place()->isEmpty()) : ?>
- <?= ' — <a href="' . e($fact->place()->url()) . '">' . $fact->place()->getFullName() . '</a>'; ?>
+ <?= ' — <a href="' . e($fact->place()->url()) . '">' . $fact->place()->fullName() . '</a>'; ?>
<?php endif ?>
</div>
<?php endforeach ?>