]> git.mjollnir.org Git - moodle.git/commitdiff
Switching to using the new SITEID constant.
authordefacer <defacer>
Mon, 30 Aug 2004 06:47:45 +0000 (06:47 +0000)
committerdefacer <defacer>
Mon, 30 Aug 2004 06:47:45 +0000 (06:47 +0000)
blocks/calendar_month/block_calendar_month.php

index bbf15814d56cc60ea7990fcb41a8c412199b7e3e..667ede4ff60bc1ed0c3a0e2802109620413a398a 100644 (file)
@@ -15,7 +15,6 @@ class CourseBlock_calendar_month extends MoodleBlock {
 
         require_once($CFG->dirroot.'/calendar/lib.php');
         
-        $site = get_site();
         if ($this->content !== NULL) {
             return $this->content;
         }
@@ -38,7 +37,7 @@ class CourseBlock_calendar_month extends MoodleBlock {
         // Be VERY careful with the format for default courses arguments!
         // Correct formatting is [courseid] => 1 to be concise with moodlelib.php functions.
         calendar_set_filters($courses, $group, $user, $filtercourse, $filtercourse);
-        if ($courseshown == $site->id) {
+        if ($courseshown == SITEID) {
             // For the front page
             $this->content->text .= calendar_overlib_html();
             $this->content->text .= calendar_top_controls('frontpage', array('m' => $_GET['cal_m'], 'y' => $_GET['cal_y']));