From 7106ac9c23260fe6ac6a29f465084d8d36f9606a Mon Sep 17 00:00:00 2001 From: lbergman Date: Sat, 10 Feb 2001 00:25:01 +0000 Subject: [PATCH] fix bug in display with no name git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@1108 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- src/options_highlight.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/options_highlight.php b/src/options_highlight.php index c3f22447..3aa5ce0b 100644 --- a/src/options_highlight.php +++ b/src/options_highlight.php @@ -78,7 +78,7 @@ echo "[" . _("Edit") . "] ["._("Delete")."]\n"; echo ' '; echo ' \n"; - echo ' ' . $message_highlight_list[$i]['name']; + echo ' ' . $message_highlight_list[$i]['name'] . ' '; echo " \n"; echo ' \n"; echo ' '.$message_highlight_list[$i]['match_type'].' = ' . $message_highlight_list[$i]['value']; @@ -141,7 +141,7 @@ if (isset($message_highlight_list[$theid]['name'])) $disp = $message_highlight_list[$theid]['name']; else - $disp = ''; + $disp = ' '; $disp = str_replace('\\\\', '\\', $disp); $disp = str_replace('\\"', '"', $disp); $disp = str_replace('"', '"', $disp); -- 2.25.1