Skip to content

Commit dac99ee

Browse files
committed
Se corrige error en instalación con versiones modernas de PHP
1 parent af08fdc commit dac99ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/installer/controller/setup.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ private function step1()
125125
$config['app']['name'] = $_POST['site_name'];
126126
$config['app']['debug'] = $_POST['debug']?true:false;
127127
$config['app']['ssl'] = $_POST['ssl']?true:false;
128-
$config['app'] = array_merge($config['app'], $_POST['settings']);
128+
$config['app'] = array_merge($config['app'], $_POST['settings']??[]);
129129
if($this->saveConfig($config))
130130
{
131131
return true;

0 commit comments

Comments
 (0)