Fixed up My Moodle

This commit is contained in:
moodler 2003-08-07 16:41:33 +00:00
parent b8d481e444
commit 26330001bc

View file

@ -1097,8 +1097,16 @@ function print_my_moodle() {
print_course($course, "100%"); print_course($course, "100%");
echo "<br />\n"; echo "<br />\n";
} }
}
echo "<p align=\"right\"><a href=\"$CFG->wwwroot/course/\">".get_string("fulllistofcourses")."</a>...</p>"; echo "<p align=\"right\"><a href=\"$CFG->wwwroot/course/\">".get_string("fulllistofcourses")."</a>...</p>";
} else {
if (count_records("course_categories") > 1) {
print_simple_box_start("center", "100%");
print_whole_category_list();
print_simple_box_end();
} else {
print_courses(0, "100%");
}
}
} }