summaryrefslogtreecommitdiff
path: root/app/Stats.php
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@webtrees.net>2018-04-06 20:58:11 +0100
committerGreg Roach <fisharebest@webtrees.net>2018-04-06 20:58:11 +0100
commit9fd88751e9b9f39fba446e9809915bb3f798bca2 (patch)
tree4b4b7287af670beed9c82c19e98b7b97fb532de3 /app/Stats.php
parent1a46bd06a4b77578f7597a3ed8f62e0c73c8228f (diff)
downloadwebtrees-9fd88751e9b9f39fba446e9809915bb3f798bca2.tar.gz
webtrees-9fd88751e9b9f39fba446e9809915bb3f798bca2.tar.bz2
webtrees-9fd88751e9b9f39fba446e9809915bb3f798bca2.zip
Escaping output should happen in views
Diffstat (limited to 'app/Stats.php')
-rw-r--r--app/Stats.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Stats.php b/app/Stats.php
index b5e80e66e3..4be21f1855 100644
--- a/app/Stats.php
+++ b/app/Stats.php
@@ -186,7 +186,7 @@ class Stats {
* @return string
*/
public function gedcomTitle() {
- return $this->tree->getTitleHtml();
+ return e($this->tree->getTitle());
}
/**