From: martinlanghoff Date: Thu, 20 Sep 2007 06:45:29 +0000 (+0000) Subject: Revert - dmllib: check $MCACHE->status() before using it X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=78c3ec2fe8c7cf8c918bdf4533e9c03b152e14b4;p=moodle.git Revert - dmllib: check $MCACHE->status() before using it --- diff --git a/lib/dmllib.php b/lib/dmllib.php index 0fe598a61c..e8dd30674f 100644 --- a/lib/dmllib.php +++ b/lib/dmllib.php @@ -2394,7 +2394,7 @@ function rcache_set($table, $id, $rec) { } else { $key = $table . '|' . $id; - if (isset($MCACHE) && $MCACHE->status()) { + if (isset($MCACHE)) { // $table is a flag used to mark // a table as dirty & uncacheable // when an UPDATE or DELETE not bound by ID @@ -2427,7 +2427,7 @@ function rcache_unset($table, $id) { } } else { $key = $table . '|' . $id; - if (isset($MCACHE) && $MCACHE->status()) { + if (isset($MCACHE)) { $MCACHE->delete($key); } } @@ -2461,7 +2461,7 @@ function rcache_get($table, $id) { } } - if (isset($MCACHE) && $MCACHE->status()) { + if (isset($MCACHE)) { $key = $table . '|' . $id; // we set $table as a flag used to mark // a table as dirty & uncacheable @@ -2510,7 +2510,7 @@ function rcache_getforfill($table, $id) { return rcache_get($table, $id); } - if (isset($MCACHE) && $MCACHE->status()) { + if (isset($MCACHE)) { $key = $table . '|' . $id; // if $table is set - we won't take the // lock either @@ -2543,7 +2543,7 @@ function rcache_getforfill($table, $id) { function rcache_releaseforfill($table, $id) { global $CFG, $MCACHE; - if (isset($MCACHE) && $MCACHE->status()) { + if (isset($MCACHE)) { $key = $table . '|' . $id; return $MCACHE->releaseforfill($key); } @@ -2570,7 +2570,7 @@ function rcache_unset_table ($table) { return true; } - if (isset($MCACHE) && $MCACHE->status()) { + if (isset($MCACHE)) { // at least as long as content keys to ensure they expire // before the dirty flag $MCACHE->set($table, true, $CFG->rcachettl);