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>
This commit is contained in:
Marcel Korpel 2013-01-09 17:48:57 +00:00 committed by Lukas Fleischer
parent 398fdb67ea
commit fcb30db59f

View file

@ -303,8 +303,6 @@ function html_header($title="") {
global $LANG; global $LANG;
global $SUPPORTED_LANGS; global $SUPPORTED_LANGS;
$title = htmlspecialchars($title, ENT_QUOTES);
include('header.php'); include('header.php');
return; return;
} }