We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a045e3 commit 0c310dcCopy full SHA for 0c310dc
lib/base.php
@@ -656,11 +656,11 @@ public static function init(): void {
656
//this doesn´t work always depending on the webserver and php configuration.
657
//Let´s try to overwrite some defaults if they are smaller than 1 hour
658
659
- if (intval(@ini_get('max_execution_time') ?? 0) < 3600) {
+ if (intval(@ini_get('max_execution_time') ?: 0) < 3600) {
660
@ini_set('max_execution_time', strval(3600));
661
}
662
663
- if (intval(@ini_get('max_input_time') ?? 0) < 3600) {
+ if (intval(@ini_get('max_input_time') ?: 0) < 3600) {
664
@ini_set('max_input_time', strval(3600));
665
666
0 commit comments