Reset internal cache index in close()

pull/287/head
Aleksander Machniak 9 years ago
parent 602d7422df
commit 9335f9cede

@ -233,6 +233,9 @@ class rcube_cache
if ($this->index_changed) {
$this->write_index();
}
// reset internal cache index, thanks to this we can force index reload
$this->index = null;
}
/**

@ -228,6 +228,9 @@ class rcube_cache_shared
if ($this->index_changed) {
$this->write_index();
}
// reset internal cache index, thanks to this we can force index reload
$this->index = null;
}
/**

Loading…
Cancel
Save