Skip to content

Commit

Permalink
course import: MDL-17497 PHP was running out of memory if a category …
Browse files Browse the repository at this point in the history
…had a lot of courses. Now get_courses only fetches course id and fullname.
  • Loading branch information
samulik committed Dec 3, 2008
1 parent b645325 commit 2e9cb9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion course/import/activities/mod.php
Expand Up @@ -33,7 +33,7 @@
}

if (!empty($creator)) {
$cat_courses = get_courses($course->category);
$cat_courses = get_courses($course->category, $sort="c.sortorder ASC", $fields="c.id, c.fullname");
} else {
$cat_courses = array();
}
Expand Down

0 comments on commit 2e9cb9d

Please sign in to comment.