]> git.mjollnir.org Git - moodle.git/commitdiff
MDL-7344 Change 'import child course' timeout to 180 seconds per course because role...
authorsam_marshall <sam_marshall>
Fri, 3 Nov 2006 14:39:19 +0000 (14:39 +0000)
committersam_marshall <sam_marshall>
Fri, 3 Nov 2006 14:39:19 +0000 (14:39 +0000)
course/importstudents.php

index 275f1bd4280b74980edb72970369db0f91a0cb7f..91f6117355293220298cd173201005673b2f7147 100644 (file)
             $timestart = $timeend = 0;
             foreach ($frm->addselect as $addcourse) {
                 $addcourse = clean_param($addcourse, PARAM_INT);
-                set_time_limit(10);
+                set_time_limit(180);
                 if (!add_to_metacourse($course->id,$addcourse)) {
                     error("Could not add the selected course to this meta course!");
                 }
             }
         } else if ($remove and !empty($frm->removeselect) and confirm_sesskey()) {
             foreach ($frm->removeselect as $removecourse) {
-                set_time_limit(10);
+                set_time_limit(180);
                 $removecourse = clean_param($removecourse, PARAM_INT);
                 if (! remove_from_metacourse($course->id,$removecourse)) {
                     error("Could not remove the selected course from this meta course!");