Changeset 9d129b5 in github


Ignore:
Timestamp:
Jul 24, 2012 4:07:00 AM (11 months ago)
Author:
Aleksander Machniak <alec@…>
Children:
2d2af72
Parents:
eed9487
git-author:
Aleksander Machniak <alec@…> (07/24/12 04:06:08)
git-committer:
Aleksander Machniak <alec@…> (07/24/12 04:07:00)
Message:

Fix performance issue in message_headers_output hook handling,
Update version number

Location:
plugins/managesieve
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • plugins/managesieve/Changelog

    reed9487 r9d129b5  
    1 * version 5.2 [2012-07-23] 
     1* version 5.2 [2012-07-24] 
    22----------------------------------------------------------- 
    33- Added GUI for variables setting - RFC5229 (patch from Paweł Słowik) 
    44- Fixed scrollbars in Larry's iframes 
     5- Fix performance issue in message_headers_output hook handling 
    56 
    67* version 5.1 [2012-06-21] 
  • plugins/managesieve/managesieve.php

    r4540217 r9d129b5  
    6565    ); 
    6666 
    67     const VERSION = '5.0'; 
     67    const VERSION = '5.2'; 
    6868    const PROGNAME = 'Roundcube (Managesieve)'; 
    6969 
     
    146146    function mail_headers($args) 
    147147    { 
     148        // this hook can be executed many times 
     149        if ($this->mail_headers_done) { 
     150            return $args; 
     151        } 
     152 
     153        $this->mail_headers_done = true; 
     154 
    148155        $headers = $args['headers']; 
    149156        $ret     = array(); 
Note: See TracChangeset for help on using the changeset viewer.