Changeset 392589e in github for program/include/rcube_imap.php


Ignore:
Timestamp:
May 17, 2011 7:03:54 AM (2 years ago)
Author:
alecpl <alec@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
Children:
4e3ec4e
Parents:
1f385b8
Message:
  • Clear mailboxes.* cache when new mailbox is created
File:
1 edited

Legend:

Unmodified
Added
Removed
  • program/include/rcube_imap.php

    r1f385b8 r392589e  
    32313231 
    32323232        // try to subscribe it 
    3233         if ($result && $subscribe) 
    3234             $this->subscribe($mailbox); 
     3233        if ($result) { 
     3234            // clear cache 
     3235            $this->clear_cache('/^mailboxes.*/', true); 
     3236 
     3237            if ($subscribe) 
     3238                $this->subscribe($mailbox); 
     3239        } 
    32353240 
    32363241        return $result; 
Note: See TracChangeset for help on using the changeset viewer.