diff options
author | Guillaume Mazoyer <respawneral@gmail.com> | 2014-05-29 22:12:02 +0200 |
---|---|---|
committer | Guillaume Mazoyer <respawneral@gmail.com> | 2014-05-29 22:12:02 +0200 |
commit | a2113e790d391acb9e454f580702a1a1e23b70c5 (patch) | |
tree | 56264f0101302e803cdeb13d653bb0683cc6d57d | |
parent | 2c4d55aafd5210b72feadf51496596fc024920ed (diff) |
The disclaimer text must already be in HTML in the config file.
-rw-r--r-- | index.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -148,7 +148,7 @@ final class LookingGlass { if (isset($this->frontpage['disclaimer']) && !empty($this->frontpage['disclaimer'])) { print 'Your IP address: '.htmlentities($_SERVER['REMOTE_ADDR']).'<br />'; - print htmlentities($this->frontpage['disclaimer']); + print $this->frontpage['disclaimer']; print '<br /><br />'; } |