mirror of
https://github.com/moodle/moodle.git
synced 2025-08-04 16:36:37 +02:00
MDL-7344 Change 'import child course' timeout to 180 seconds per course because role creation takes a while for thousands of users. (Merge from STABLE)
This commit is contained in:
parent
8174990c49
commit
e3eb61244d
1 changed files with 2 additions and 2 deletions
|
@ -62,14 +62,14 @@
|
|||
$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!");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue