Changeset 23856c9 in github


Ignore:
Timestamp:
Jul 24, 2012 4:06:08 AM (10 months ago)
Author:
Aleksander Machniak <alec@…>
Children:
e19fafa
Parents:
9620540a
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

    ra49e00a r23856c9  
    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

    rc9dcb83 r23856c9  
    6363    ); 
    6464 
    65     const VERSION = '5.0'; 
     65    const VERSION = '5.2'; 
    6666    const PROGNAME = 'Roundcube (Managesieve)'; 
    6767 
     
    144144    function mail_headers($args) 
    145145    { 
     146        // this hook can be executed many times 
     147        if ($this->mail_headers_done) { 
     148            return $args; 
     149        } 
     150 
     151        $this->mail_headers_done = true; 
     152 
    146153        $headers = $args['headers']; 
    147154        $ret     = array(); 
Note: See TracChangeset for help on using the changeset viewer.