mirror of
https://github.com/friendica/friendica
synced 2024-11-17 22:23:41 +00:00
Fix installation
This commit is contained in:
parent
c21e6b5e6d
commit
67a8c5073c
1 changed files with 2 additions and 1 deletions
|
@ -87,7 +87,7 @@ class Install extends BaseModule
|
||||||
// so we may not have a css at all. Here we set a static css file for the install procedure pages
|
// so we may not have a css at all. Here we set a static css file for the install procedure pages
|
||||||
Renderer::$theme['stylesheet'] = $this->baseUrl . '/view/install/style.css';
|
Renderer::$theme['stylesheet'] = $this->baseUrl . '/view/install/style.css';
|
||||||
|
|
||||||
$this->currentWizardStep = ($_POST['pass'] ?? '') ?: self::SYSTEM_CHECK;
|
$this->currentWizardStep = ($_REQUEST['pass'] ?? '') ?: self::SYSTEM_CHECK;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function post(array $request = [])
|
protected function post(array $request = [])
|
||||||
|
@ -164,6 +164,7 @@ class Install extends BaseModule
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
DI::baseUrl()->redirect('install?pass=' . $this->currentWizardStep);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function content(array $request = []): string
|
protected function content(array $request = []): string
|
||||||
|
|
Loading…
Reference in a new issue