]> git.mjollnir.org Git - moodle.git/commitdiff
outputlib MDL-19077 Fixed a typo I made in the has_started method
authorsamhemelryk <samhemelryk>
Tue, 30 Jun 2009 02:58:09 +0000 (02:58 +0000)
committersamhemelryk <samhemelryk>
Tue, 30 Jun 2009 02:58:09 +0000 (02:58 +0000)
lib/outputlib.php

index 251548c476cac35e29dcd9687a235f7f2919319b..db848520eb7c9d6e4565abf24c131f3184b7ca4d 100644 (file)
@@ -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;