From ef81a7c30ea3542d54c2bc16dc015a09bd4fc38f Mon Sep 17 00:00:00 2001 From: James Pratt Date: Wed, 11 Dec 2013 17:58:33 +0700 Subject: [PATCH] MDL-41754 (3) quiz statistics : need to escape core_php_time_limit after MDL-42084 was merged into upstream, introducing core_php_time_limit, this branch that moved a reference to core_php_time_limit to a new namespace was broken. --- lib/classes/progress/base.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/classes/progress/base.php b/lib/classes/progress/base.php index d1eaf91e131..34123629e00 100644 --- a/lib/classes/progress/base.php +++ b/lib/classes/progress/base.php @@ -212,7 +212,7 @@ abstract class base { $this->lastprogresstime = $now; // Update time limit before next progress display. - core_php_time_limit::raise(self::TIME_LIMIT_WITHOUT_PROGRESS); + \core_php_time_limit::raise(self::TIME_LIMIT_WITHOUT_PROGRESS); $this->update_progress(); }