summaryrefslogtreecommitdiff
path: root/app/Controller/LifespanController.php
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@gmail.com>2015-02-13 22:15:07 +0000
committerGreg Roach <fisharebest@gmail.com>2015-02-13 22:15:07 +0000
commit9963a350df992d56b056dcd2ab3296b27c249743 (patch)
tree126d3ca20e8ec4187eedfcb533793e02600bbc11 /app/Controller/LifespanController.php
parent2769ecbed12db960c3fb57047b808f98a04744dd (diff)
downloadwebtrees-9963a350df992d56b056dcd2ab3296b27c249743.tar.gz
webtrees-9963a350df992d56b056dcd2ab3296b27c249743.tar.bz2
webtrees-9963a350df992d56b056dcd2ab3296b27c249743.zip
Upper/lower case function names
Diffstat (limited to 'app/Controller/LifespanController.php')
-rw-r--r--app/Controller/LifespanController.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Controller/LifespanController.php b/app/Controller/LifespanController.php
index 57cce46d07..2e506aefb6 100644
--- a/app/Controller/LifespanController.php
+++ b/app/Controller/LifespanController.php
@@ -445,9 +445,9 @@ class LifespanController extends PageController {
}
$trans = WT_Gedcom_Tag::getLabel($fact);
if (isset($eventinformation[$evntwdth])) {
- $eventinformation[$evntwdth] .= '<br>' . $trans . '<br>' . strip_tags($date->Display()) . ' ' . $val->getPlace()->getFullName();
+ $eventinformation[$evntwdth] .= '<br>' . $trans . '<br>' . strip_tags($date->display()) . ' ' . $val->getPlace()->getFullName();
} else {
- $eventinformation[$evntwdth] = $fact . '-fact, ' . $trans . '<br>' . strip_tags($date->Display()) . ' ' . $val->getPlace()->getFullName();
+ $eventinformation[$evntwdth] = $fact . '-fact, ' . $trans . '<br>' . strip_tags($date->display()) . ' ' . $val->getPlace()->getFullName();
}
}
}