From 1027fcce3b390905ef24a3e667912d278629fdee Mon Sep 17 00:00:00 2001 From: stronk7 Date: Sun, 15 Apr 2007 11:10:42 +0000 Subject: [PATCH] Fixing typo causing purge of accelerator cache not working. MDL-9349 --- lib/dmllib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/dmllib.php b/lib/dmllib.php index 15c4d91fc7b..7a42dbd987a 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; }