From: stronk7 Date: Sun, 15 Apr 2007 11:11:48 +0000 (+0000) Subject: Fixing typo causing purge of accelerator cache not working. MDL-9349 X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=a7a7fa8306761c2832aca9c661fb829131967715;p=moodle.git Fixing typo causing purge of accelerator cache not working. MDL-9349 Merged from MOODLE_18_STABLE --- diff --git a/lib/dmllib.php b/lib/dmllib.php index 15c4d91fc7..7a42dbd987 100644 --- a/lib/dmllib.php +++ b/lib/dmllib.php @@ -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; }