1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-02-16 19:40:44 +01:00

Fix host per problemi installazione

This commit is contained in:
Luca 2018-02-21 21:51:15 +01:00
parent 3ea0aae4aa
commit 8b56f01679

View File

@ -18,8 +18,8 @@ if (file_exists($docroot.'/include/custom/top.php')) {
}
// Controllo sull'esistenza di nuovi parametri di configurazione
if (post('db_host') !== null) {
$db_host = post('db_host');
if ($_POST['db_host'] !== null) {
$db_host = $_POST['db_host'];
$db_name = post('db_name');
$db_username = post('db_username');
$db_password = post('db_password');