X-Git-Url: https://git.p6c8.net/jirafeau_project.git/blobdiff_plain/7efbeeb8655697f15071f6edfb99edaa72868c74..e2d6cda643fb68b8f831ee7e4337d5e198cc83dd:/install.php diff --git a/install.php b/install.php index 2739bc8..b400988 100644 --- a/install.php +++ b/install.php @@ -154,7 +154,11 @@ if (isset($_POST['step']) && isset($_POST['next'])) { break; case 2: - $cfg['admin_password'] = hash('sha256', $_POST['admin_password']); + if (strlen($_POST['admin_password'])) { + $cfg['admin_password'] = hash('sha256', $_POST['admin_password']); + } else { + $cfg['admin_password'] = ''; + } jirafeau_export_cfg($cfg); break;