From 8501de46acaed0f3a9dd0687a24d57c7ed4dadc7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20Nicolaysen=20S=C3=B8rnes?= Date: Wed, 22 Apr 2009 20:29:42 +0200 Subject: [PATCH] Fix display of text colour in session messages --- include/incl.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/incl.php b/include/incl.php index e47fb80..624b7b1 100644 --- a/include/incl.php +++ b/include/incl.php @@ -273,8 +273,8 @@ function dumpmsgbuffer() foreach ($GLOBALS['session']->msg as $msg) { if ($msg['color'] == "red") - $msg['color'] = "{$msg['color']};text-decoration:blink"; - echo "
{$msg['msg']}
"; + $msg['color'] = "{$msg['color']}; text-decoration: blink;"; + echo "
{$msg['msg']}
"; } echo html_frame_end(" "); echo "
\n";