Merge branch 'MDL-43734_purgeUserSession' of https://github.com/moodlerooms/moodle

This commit is contained in:
Eloy Lafuente (stronk7) 2014-01-27 00:26:44 +01:00
commit 3b5e8aebbe

View File

@ -1742,7 +1742,7 @@ class cache_session extends cache {
* Purges the session cache of all data belonging to the current user.
*/
public function purge_current_user() {
$keys = $this->get_store()->find_all($this->get_key_prefix());
$keys = $this->get_store()->find_by_prefix($this->get_key_prefix());
$this->get_store()->delete_many($keys);
}