From 0b6aacc9568e7aa0ca41aebad02e572f48a0c346 Mon Sep 17 00:00:00 2001 From: stekkel Date: Wed, 28 May 2003 22:11:43 +0000 Subject: [PATCH] fix for reply all. Remove teh double quotes around the personal name. We don't need them. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@4949 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- src/compose.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/compose.php b/src/compose.php index 22020d95..99af71aa 100644 --- a/src/compose.php +++ b/src/compose.php @@ -129,12 +129,13 @@ function replyAllString($header) { $url_replytoallcc = ''; foreach( $url_replytoall_ar as $email => $personal) { if ($personal) { - $url_replytoallcc .= ", \"$personal\" <$email>"; + $url_replytoallcc .= ", $personal <$email>"; } else { $url_replytoallcc .= ', '. $email; } } $url_replytoallcc = substr($url_replytoallcc,2); + return $url_replytoallcc; } -- 2.25.1