summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Mazoyer <respawneral@gmail.com>2014-05-29 22:12:02 +0200
committerGuillaume Mazoyer <respawneral@gmail.com>2014-05-29 22:12:02 +0200
commita2113e790d391acb9e454f580702a1a1e23b70c5 (patch)
tree56264f0101302e803cdeb13d653bb0683cc6d57d
parent2c4d55aafd5210b72feadf51496596fc024920ed (diff)
The disclaimer text must already be in HTML in the config file.
-rw-r--r--index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.php b/index.php
index b2ca721..bbdc1dd 100644
--- a/index.php
+++ b/index.php
@@ -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 />';
}