From b7337ab7ec4cb6eeabd95f4cd0c04e09cfbce2eb Mon Sep 17 00:00:00 2001 From: samhemelryk Date: Tue, 30 Jun 2009 02:58:09 +0000 Subject: [PATCH] outputlib MDL-19077 Fixed a typo I made in the has_started method --- lib/outputlib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/outputlib.php b/lib/outputlib.php index 251548c476..db848520eb 100644 --- a/lib/outputlib.php +++ b/lib/outputlib.php @@ -879,7 +879,7 @@ class moodle_core_renderer extends moodle_renderer_base { } public function has_started() { - if ($this->page->stated >= moodle_page::STATE_IN_BODY) { + if ($this->page->state >= moodle_page::STATE_IN_BODY) { return true; } return false; -- 2.39.5