diff options
author | Loui Chang <louipc.ist@gmail.com> | 2010-11-03 06:03:45 +0100 |
---|---|---|
committer | Loui Chang <louipc.ist@gmail.com> | 2010-11-03 06:03:45 +0100 |
commit | dbb8bb783f2f22b68ad2d65f020390428e77c479 (patch) | |
tree | d19fa0a825fbb2b382a3f8fb49373229a20f5fa5 /web/template/tu_details.php | |
parent | dc8265a96296720e0c42a1d89400c8dde92e7106 (diff) | |
download | aur-dbb8bb783f2f22b68ad2d65f020390428e77c479.tar.gz aur-dbb8bb783f2f22b68ad2d65f020390428e77c479.tar.xz |
TU: Use htmlspecialchars instead of htmlentities.
Let the utf8 shine through.
Signed-off-by: Loui Chang <louipc.ist@gmail.com>
Diffstat (limited to 'web/template/tu_details.php')
-rw-r--r-- | web/template/tu_details.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/template/tu_details.php b/web/template/tu_details.php index 0016dfe8..315e1b90 100644 --- a/web/template/tu_details.php +++ b/web/template/tu_details.php @@ -21,7 +21,7 @@ N/A <?php print __('End') ?>: <b><?php print gmdate("r", $row['End']) ?></b></p> <p> -<?php print str_replace("\n", "<br />\n", htmlentities($row['Agenda'])) ?> +<?php print str_replace("\n", "<br />\n", htmlspecialchars($row['Agenda'])) ?> </p> <table class="boxSoft" width='100%' cellspacing='0' cellpadding='2'> |