"MDL-18540, change the uses of option"

This commit is contained in:
dongsheng 2009-03-30 10:07:24 +00:00
parent 832e13f144
commit 1ed8e660fd
5 changed files with 10 additions and 10 deletions

View File

@ -363,10 +363,10 @@ class problem_000008 extends problem_base {
}
$oldmemlimit = get_real_size($oldmemlimit);
//now lets change the memory limit to something unique below 128M==134217728
if (empty($CFG->memorylimit)) {
if (empty($CFG->extramemorylimit)) {
raise_memory_limit('128M');
} else {
raise_memory_limit($CFG->memorylimit);
raise_memory_limit($CFG->extramemorylimit);
}
$testmemlimit = get_real_size(@ini_get('memory_limit'));
//verify the change had any effect at all

View File

@ -548,10 +548,10 @@
return false;
}
@ini_set("max_execution_time","3000");
if (empty($CFG->memorylimit)) {
if (empty($CFG->extramemorylimit)) {
raise_memory_limit('128M');
} else {
raise_memory_limit($CFG->memorylimit);
raise_memory_limit($CFG->extramemorylimit);
}
if (!$backup_unique_code = restore_precheck($destinationcourse,$pathtofile,$errorstr,true)) {

View File

@ -141,10 +141,10 @@
//Adjust some php variables to the execution of this script
@ini_set("max_execution_time","3000");
if (empty($CFG->memorylimit)) {
if (empty($CFG->extramemorylimit)) {
raise_memory_limit('128M');
} else {
raise_memory_limit($CFG->memorylimit);
raise_memory_limit($CFG->extramemorylimit);
}
//Call the form, depending the step we are

View File

@ -19,10 +19,10 @@
//Adjust some php variables to the execution of this script
@ini_set("max_execution_time","3000");
if (empty($CFG->memorylimit)) {
if (empty($CFG->extramemorylimit)) {
raise_memory_limit('128M');
} else {
raise_memory_limit($CFG->memorylimit);
raise_memory_limit($CFG->extramemorylimit);
}
echo "<pre>\n";

View File

@ -14,10 +14,10 @@
try{
ini_set('max_execution_time', 300);
if (empty($CFG->memorylimit)) {
if (empty($CFG->extramemorylimit)) {
raise_memory_limit('128M');
} else {
raise_memory_limit($CFG->memorylimit);
raise_memory_limit($CFG->extramemorylimit);
}
mtrace("\n--DELETE----");