From 35d0244a37f5809883a427688670d15708b2df23 Mon Sep 17 00:00:00 2001 From: toyomoyo Date: Wed, 14 Feb 2007 04:56:26 +0000 Subject: [PATCH] taking out deprecated width in print_courses and print_course --- course/category.php | 2 +- course/index.php | 2 +- course/lib.php | 8 ++++---- index.php | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/course/category.php b/course/category.php index 84cdd09634..12df10b314 100644 --- a/course/category.php +++ b/course/category.php @@ -249,7 +249,7 @@ } } else if ($numcourses <= COURSE_MAX_SUMMARIES_PER_PAGE and !$page and !$creatorediting) { - print_courses($category, "80%"); + print_courses($category); } else { print_paging_bar($totalcount, $page, $perpage, "category.php?id=$category->id&perpage=$perpage&"); diff --git a/course/index.php b/course/index.php index 6e5de0a96a..8e63f08ef1 100644 --- a/course/index.php +++ b/course/index.php @@ -55,7 +55,7 @@ print_header("$site->shortname: $strfulllistofcourses", $strfulllistofcourses, $strfulllistofcourses, '', '', true, update_categories_button()); print_box_start('courseboxes'); - print_courses(0, '80%'); + print_courses(0); print_box_end(); } diff --git a/course/lib.php b/course/lib.php index 9c3ad3275d..d4144d76dd 100644 --- a/course/lib.php +++ b/course/lib.php @@ -1731,7 +1731,7 @@ function print_category_info($category, $depth, $files = false) { } -function print_courses($category, $width="100%", $hidesitecourse = false) { +function print_courses($category, $hidesitecourse = false) { /// Category is 0 (for all courses) or an object global $CFG; @@ -1755,7 +1755,7 @@ function print_courses($category, $width="100%", $hidesitecourse = false) { if ($hidesitecourse and ($course->id == SITEID)) { continue; } - print_course($course, $width); + print_course($course); } } else { print_heading(get_string("nocoursesyet")); @@ -1774,7 +1774,7 @@ function print_courses($category, $width="100%", $hidesitecourse = false) { } -function print_course($course, $width="100%") { +function print_course($course) { global $CFG, $USER; @@ -1882,7 +1882,7 @@ function print_my_moodle() { print_whole_category_list(); print_simple_box_end(); } else { - print_courses(0, "100%"); + print_courses(0); } } } diff --git a/index.php b/index.php index 6fd71a7fed..a3a3607b98 100644 --- a/index.php +++ b/index.php @@ -228,7 +228,7 @@ } else if ((!has_capability('moodle/site:config', get_context_instance(CONTEXT_SYSTEM)) and !isguest()) or (count_records('course') <= FRONTPAGECOURSELIMIT)) { // admin should not see list of courses when there are too many of them print_heading_block(get_string('availablecourses')); - print_courses(0, '100%', true); + print_courses(0, true); } break; -- 2.39.5