From 901af38d032e7e242b334b5ee836f3c2eb9d704e Mon Sep 17 00:00:00 2001 From: chriskl Date: Sun, 23 Mar 2003 10:53:45 +0000 Subject: [PATCH] don't htmlspecialchars messages --- classes/Misc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/classes/Misc.php b/classes/Misc.php index f9be8989..72d32379 100644 --- a/classes/Misc.php +++ b/classes/Misc.php @@ -2,7 +2,7 @@ /** * Class to hold various commonly used functions * - * $Id: Misc.php,v 1.17 2003/03/17 05:20:30 chriskl Exp $ + * $Id: Misc.php,v 1.18 2003/03/23 10:53:45 chriskl Exp $ */ class Misc { @@ -59,7 +59,7 @@ * @param $msg The message to print */ function printMsg($msg) { - if ($msg != '') echo "

", htmlspecialchars($msg), "

\n"; + if ($msg != '') echo "

{$msg}

\n"; } /** -- 2.39.5