]> git.mjollnir.org Git - moodle.git/commitdiff
Removed needless pass-by-reference to avoid warnings BUG 573 Thanks Eloy!
authormoodler <moodler>
Thu, 31 Jul 2003 12:23:49 +0000 (12:23 +0000)
committermoodler <moodler>
Thu, 31 Jul 2003 12:23:49 +0000 (12:23 +0000)
course/lib.php

index a505ae5636b12d085ce43bcd8b5391173364820e..2c205a4fd98136ee4ffb505b1865391ac51e4365 100644 (file)
@@ -821,7 +821,7 @@ function make_categories_list(&$list, &$parents, $category=NULL, $path="") {
                 $parents[$cat->id]   = $parents[$category->id];
                 $parents[$cat->id][] = $category->id;
             }
-            make_categories_list($list, &$parents, $cat, $path);         
+            make_categories_list($list, $parents, $cat, $path);         
         }
     }
 }
@@ -832,7 +832,7 @@ function print_whole_category_list($category=NULL, $displaylist=NULL, $parentsli
 /// with or without courses included
 
     if (!$displaylist) {
-        make_categories_list(&$displaylist, &$parentslist);
+        make_categories_list($displaylist, $parentslist);
     }
 
     if ($category) {
@@ -871,7 +871,6 @@ function print_whole_category_list($category=NULL, $displaylist=NULL, $parentsli
 }
 
 
-
 function print_category_box($category, $depth) {
 /// Prints the category box in indented fashion