fix for reply all. Remove teh double quotes around the personal name. We
authorstekkel <stekkel@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Wed, 28 May 2003 22:11:43 +0000 (22:11 +0000)
committerstekkel <stekkel@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Wed, 28 May 2003 22:11:43 +0000 (22:11 +0000)
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

index 22020d954ccef2c50790cd8d831cb74c3afb12ea..99af71aabca55b35348ecf8ef86647b880b22281 100644 (file)
@@ -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;
 }