Fix subscription cache clearing after subscription changes
This commit is contained in:
parent
17e6662a23
commit
b32c36f58f
1 changed files with 2 additions and 2 deletions
|
@ -1198,7 +1198,7 @@ class kolab_storage
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (self::$imap->subscribe($folder)) {
|
else if (self::$imap->subscribe($folder)) {
|
||||||
self::$subscriptions === null;
|
self::$subscriptions = null;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1226,7 +1226,7 @@ class kolab_storage
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
else if (self::$imap->unsubscribe($folder)) {
|
else if (self::$imap->unsubscribe($folder)) {
|
||||||
self::$subscriptions === null;
|
self::$subscriptions = null;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue