diff options
author | Marcel Korpel <marcel.lists@gmail.com> | 2013-01-09 18:48:57 +0100 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2013-01-19 12:21:04 +0100 |
commit | fcb30db59f301468fdd696964c07d27a3d09def8 (patch) | |
tree | 95fd38c9c7be2438641ac12d64deb76300982977 /web/lib/aur.inc.php | |
parent | 398fdb67ead0dd0fe82a9983f6aa0c99f322d806 (diff) | |
download | aur-fcb30db59f301468fdd696964c07d27a3d09def8.tar.gz aur-fcb30db59f301468fdd696964c07d27a3d09def8.tar.xz |
Remove double htmlspecialchars
This is already done in header.php; doing this double will result
in & in title element
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/lib/aur.inc.php')
-rw-r--r-- | web/lib/aur.inc.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/web/lib/aur.inc.php b/web/lib/aur.inc.php index 018d5c82..387d81de 100644 --- a/web/lib/aur.inc.php +++ b/web/lib/aur.inc.php @@ -303,8 +303,6 @@ function html_header($title="") { global $LANG; global $SUPPORTED_LANGS; - $title = htmlspecialchars($title, ENT_QUOTES); - include('header.php'); return; } |