outputlib MDL-19077 Fixed a typo I made in the has_started method

This commit is contained in:
samhemelryk
2009-06-30 02:58:09 +00:00
parent 72c6b04ae7
commit b7337ab7ec
+1 -1
View 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;