Changeset 520c36a in github for program/steps/mail/compose.inc


Ignore:
Timestamp:
Oct 11, 2005 5:11:42 PM (8 years ago)
Author:
thomascube <thomas@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
Children:
09941ea
Parents:
49afbf5
Message:

Better support for Courier IMAP

File:
1 edited

Legend:

Unmodified
Added
Removed
  • program/steps/mail/compose.inc

    r597170f r520c36a  
    404404  // create a reply-subject 
    405405  else if (isset($REPLY_MESSAGE['subject'])) 
    406     $subject = 'Re: '.$REPLY_MESSAGE['subject']; 
     406    { 
     407    if (strpos($REPLY_MESSAGE['subject'], 'Re:')===0) 
     408      $subject = $REPLY_MESSAGE['subject']; 
     409    else 
     410      $subject = 'Re: '.$REPLY_MESSAGE['subject']; 
     411    } 
    407412 
    408413  // create a forward-subject 
Note: See TracChangeset for help on using the changeset viewer.