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 5cee4f4 commit 68f5550Copy full SHA for 68f5550
lib/base.php
@@ -662,11 +662,11 @@ public static function init(): void {
662
//this doesn´t work always depending on the webserver and php configuration.
663
//Let´s try to overwrite some defaults if they are smaller than 1 hour
664
665
- if (intval(@ini_get('max_execution_time') ?? 0) < 3600) {
+ if (intval(@ini_get('max_execution_time') ?: 0) < 3600) {
666
@ini_set('max_execution_time', strval(3600));
667
}
668
669
- if (intval(@ini_get('max_input_time') ?? 0) < 3600) {
+ if (intval(@ini_get('max_input_time') ?: 0) < 3600) {
670
@ini_set('max_input_time', strval(3600));
671
672
0 commit comments