diff --git a/lib/coursecatlib.php b/lib/coursecatlib.php index d9609b4d65b..ec591320cef 100644 --- a/lib/coursecatlib.php +++ b/lib/coursecatlib.php @@ -713,7 +713,8 @@ class coursecat implements renderable, cacheable_object, IteratorAggregate { if (empty($cacheddata['basic']) || $cacheddata['basic']['roles'] !== $CFG->coursecontact || $cacheddata['basic']['lastreset'] < time() - self::CACHE_COURSE_CONTACTS_TTL) { // Reset cache. - $cache->purge(); + $keys = $DB->get_fieldset_select('course', 'id', ''); + $cache->delete_many($keys); $cache->set('basic', array('roles' => $CFG->coursecontact, 'lastreset' => time())); $cacheddata = $cache->get_many(array_merge(array('basic'), array_keys($courses))); }