Merge pull request #21836 from RomanKreisel/master
Solves #21835 (https://github.com/owncloud/core/issues/21835)
This commit is contained in:
commit
a203089cfd
|
@ -126,10 +126,15 @@ class Manager extends PublicEmitter implements IGroupManager {
|
|||
*/
|
||||
public function addBackend($backend) {
|
||||
$this->backends[] = $backend;
|
||||
$this->clearCaches();
|
||||
}
|
||||
|
||||
public function clearBackends() {
|
||||
$this->backends = array();
|
||||
$this->clearCaches();
|
||||
}
|
||||
|
||||
protected function clearCaches() {
|
||||
$this->cachedGroups = array();
|
||||
$this->cachedUserGroups = array();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue