From: samhemelryk Date: Tue, 30 Jun 2009 02:58:09 +0000 (+0000) Subject: outputlib MDL-19077 Fixed a typo I made in the has_started method X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=b7337ab7ec4cb6eeabd95f4cd0c04e09cfbce2eb;p=moodle.git outputlib MDL-19077 Fixed a typo I made in the has_started method --- 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;