logo       
Google Custom Search
    AddThis Social Bookmark Button
-->

SF.net SVN: squirrelmail: [12198] branches/SM-1_4-STABLE/squirrelmail: msg#00241

Subject: SF.net SVN: squirrelmail: [12198] branches/SM-1_4-STABLE/squirrelmail
Revision: 12198
          
http://squirrelmail.svn.sourceforge.net/squirrelmail/?rev=12198&view=rev
Author:   kink
Date:     2007-01-24 06:45:35 -0800 (Wed, 24 Jan 2007)

Log Message:
-----------
- Fix reply to all duplicating the address from Reply-To:
  reply_to spelled as replyto. Thanks Greg Franklin via Debian

Modified Paths:
--------------
    branches/SM-1_4-STABLE/squirrelmail/ChangeLog
    branches/SM-1_4-STABLE/squirrelmail/src/compose.php

Modified: branches/SM-1_4-STABLE/squirrelmail/ChangeLog
===================================================================
--- branches/SM-1_4-STABLE/squirrelmail/ChangeLog       2007-01-24 06:51:15 UTC 
(rev 12197)
+++ branches/SM-1_4-STABLE/squirrelmail/ChangeLog       2007-01-24 14:45:35 UTC 
(rev 12198)
@@ -17,6 +17,7 @@
   - Fix URL to send read receipts from read_body (#1637572).
   - Fix for high memory usage when forwarding messages with attachments.
   - Fix for filename extraction from attachments.
+  - Fix reply to all duplicating the address from Reply-To.
 
 Version 1.4.9a - 3 December 2006
 --------------------------------

Modified: branches/SM-1_4-STABLE/squirrelmail/src/compose.php
===================================================================
--- branches/SM-1_4-STABLE/squirrelmail/src/compose.php 2007-01-24 06:51:15 UTC 
(rev 12197)
+++ branches/SM-1_4-STABLE/squirrelmail/src/compose.php 2007-01-24 14:45:35 UTC 
(rev 12198)
@@ -131,8 +131,8 @@
      * 1) Remove the addresses we'll be sending the message 'to'
      */
     $url_replytoall_avoid_addrs = '';
-    if (isset($header->replyto)) {
-        $excl_ar = $header->getAddr_a('replyto');
+    if (isset($header->reply_to)) {
+        $excl_ar = $header->getAddr_a('reply_to');
     }
     /**
      * 2) Remove our identities from the CC list (they still can be in the


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV


<Prev in Thread] Current Thread [Next in Thread>