moodle_request_shutdown(): silence errors when apache_child_terminate() is disallowed - (MDL-9350)

This commit is contained in:
martinlanghoff
2007-04-16 00:24:27 +00:00
parent 8f660562d8
commit 08c58ff103
+1 -1
View File
@@ -6521,7 +6521,7 @@ function moodle_request_shutdown() {
}
if (memory_get_usage() > (int)$CFG->apachemaxmem) {
trigger_error('Mem usage over $CFG->apachemaxmem: marking child for reaping.');
apache_child_terminate();
@apache_child_terminate();
}
}
}