Increase timeout on migration (#2992)

This commit is contained in:
Jeroen Peelaerts
2020-10-28 22:00:56 +01:00
parent 625fb584ed
commit e1ff739621
3 changed files with 3 additions and 6 deletions

View File

@@ -905,7 +905,7 @@ class Config extends Secure_Controller
$result = FALSE;
// Chmod the file
@chmod($config_path, 0777);
@chmod($config_path, 0770);
// Verify file permissions
if(is_writable($config_path))
@@ -920,7 +920,7 @@ class Config extends Secure_Controller
}
// Chmod the file
@chmod($config_path, 0444);
@chmod($config_path, 0440);
return $result;
}