From 8132cfc7a1042f1bd6c119aa4beb20d0e65c483c Mon Sep 17 00:00:00 2001 From: tokul Date: Mon, 20 Feb 2006 17:46:34 +0000 Subject: [PATCH] same fix as in 1.5.1. Color codes without # does not work in standard compliance mode. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@10776 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- src/options_highlight.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/options_highlight.php b/src/options_highlight.php index c2d39e83..42930721 100644 --- a/src/options_highlight.php +++ b/src/options_highlight.php @@ -424,7 +424,7 @@ if ($action == 'edit' || $action == 'add') { $gridindex = "$y,$x"; $gridcolor = $new_color_list[$gridindex]; echo html_tag( 'td', addRadioBox('color_type', ($gridcolor == $current_color), '#'.$gridcolor), - 'left', $gridcolor, 'colspan="2"' ); + 'left', '#'.$gridcolor, 'colspan="2"' ); } echo "\n"; } -- 2.25.1