]> git.mjollnir.org Git - moodle.git/commitdiff
Fixing typo causing purge of accelerator cache not working. MDL-9349
authorstronk7 <stronk7>
Sun, 15 Apr 2007 11:11:48 +0000 (11:11 +0000)
committerstronk7 <stronk7>
Sun, 15 Apr 2007 11:11:48 +0000 (11:11 +0000)
Merged from MOODLE_18_STABLE

lib/dmllib.php

index 15c4d91fc7bc51e00252b920d7a903278ad625d2..7a42dbd987a93d8b8a80f3d139b9f7369a1a9e11 100644 (file)
@@ -2397,7 +2397,7 @@ function rcache_unset_table ($table) {
     if (isset($MCACHE)) {
         // at least as long as content keys to ensure they expire
         // before the dirty flag 
-        $MCACHE->set($tablekey, true, $CFG->rcachettl);
+        $MCACHE->set($table, true, $CFG->rcachettl);
     }
     return true;
 }