diff --git a/modules/backend/controllers/index/_warnings.htm b/modules/backend/controllers/index/_warnings.htm index 0865a0c56..1723638ad 100644 --- a/modules/backend/controllers/index/_warnings.htm +++ b/modules/backend/controllers/index/_warnings.htm @@ -21,6 +21,7 @@ $requiredExtensions = [ 'fileinfo' => extension_loaded('fileinfo'), 'Zip' => class_exists('ZipArchive'), 'cURL' => function_exists('curl_init') && defined('CURLOPT_FOLLOWLOCATION'), + 'OpenSSL' => function_exists('openssl_random_pseudo_bytes'), ]; foreach ($writablePaths as $path) { diff --git a/modules/system/controllers/Updates.php b/modules/system/controllers/Updates.php index 3a7a0b433..5e35602c0 100644 --- a/modules/system/controllers/Updates.php +++ b/modules/system/controllers/Updates.php @@ -97,9 +97,7 @@ class Updates extends Controller /* * Address timeout limits */ - if (!ini_get('safe_mode')) { - set_time_limit(3600); - } + @set_time_limit(3600); $manager = UpdateManager::instance(); $stepCode = post('code');