diff options
| author | Greg Roach <fisharebest@webtrees.net> | 2019-02-15 21:08:11 +0000 |
|---|---|---|
| committer | Greg Roach <fisharebest@webtrees.net> | 2019-02-16 14:26:05 +0000 |
| commit | 39ca88ba08cefcfcaf891abfcf748f9c808eb326 (patch) | |
| tree | 09fb6844b1e44eeb1755671f00317f914644231b /resources/views/modules/todays_events/list.phtml | |
| parent | 888ddf4f75ad7e5e5b322ccfa329fb24ddc9af04 (diff) | |
| download | webtrees-39ca88ba08cefcfcaf891abfcf748f9c808eb326.tar.gz webtrees-39ca88ba08cefcfcaf891abfcf748f9c808eb326.tar.bz2 webtrees-39ca88ba08cefcfcaf891abfcf748f9c808eb326.zip | |
Rename functions getFoo() to foo() and return collections instead of arrays
Diffstat (limited to 'resources/views/modules/todays_events/list.phtml')
| -rw-r--r-- | resources/views/modules/todays_events/list.phtml | 2 |
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 75017d06f9..b04e2489c0 100644 --- a/resources/views/modules/todays_events/list.phtml +++ b/resources/views/modules/todays_events/list.phtml @@ -4,7 +4,7 @@ <?php foreach ($facts as $fact) : ?> <?php $record = $fact->record(); ?> <a href="<?= e($record->url()) ?>" class="list_item name2"> - <?= $record->getFullName() ?> + <?= $record->fullName() ?> </a> <?php if ($record instanceof Individual) : ?> <?= $record->getSexImage() ?> |
