diff --git a/lib/moodlelib.php b/lib/moodlelib.php index 43387e0169b..cd0eb8117fe 100644 --- a/lib/moodlelib.php +++ b/lib/moodlelib.php @@ -929,7 +929,7 @@ function set_cache_flag($type, $name, $value, $expiry=NULL) { return true; } - if ($f = $DB->get_record('cache_flags', array('name'=>$name, 'flagtype'=>$type))) { // this is a potentail problem in DEBUG_DEVELOPER + if ($f = $DB->get_record('cache_flags', array('name'=>$name, 'flagtype'=>$type), '*', IGNORE_MULTIPLE)) { // this is a potentail problem in DEBUG_DEVELOPER if ($f->value == $value and $f->expiry == $expiry and $f->timemodified == $timemodified) { return true; //no need to update; helps rcache too } diff --git a/lib/weblib.php b/lib/weblib.php index 13c84092bf1..6e40a59594f 100644 --- a/lib/weblib.php +++ b/lib/weblib.php @@ -1425,7 +1425,7 @@ function format_text($text, $format=FORMAT_MOODLE, $options=NULL, $courseid=NULL } } - if ($oldcacheitem = $DB->get_record('cache_text', array('md5key'=>$md5key), '*', true)) { + if ($oldcacheitem = $DB->get_record('cache_text', array('md5key'=>$md5key), '*', IGNORE_MULTIPLE)) { if ($oldcacheitem->timemodified >= $time) { if (CLI_SCRIPT) { if (count($croncache) > 150) {