Quellcode durchsuchen

fix: Fix default values for ini var in lib/base.php

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
tags/v28.0.6rc1
Côme Chilliet vor 1 Monat
Ursprung
Commit
8915a984d3
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. 2
    2
      lib/base.php

+ 2
- 2
lib/base.php Datei anzeigen

@@ -656,11 +656,11 @@ class OC {
//this doesn´t work always depending on the webserver and php configuration.
//Let´s try to overwrite some defaults if they are smaller than 1 hour

if (intval(@ini_get('max_execution_time') ?? 0) < 3600) {
if (intval(@ini_get('max_execution_time') ?: 0) < 3600) {
@ini_set('max_execution_time', strval(3600));
}

if (intval(@ini_get('max_input_time') ?? 0) < 3600) {
if (intval(@ini_get('max_input_time') ?: 0) < 3600) {
@ini_set('max_input_time', strval(3600));
}


Laden…
Abbrechen
Speichern