Aaron-Junker / USOC

useful simple open-source CMS
Other
5 stars 1 forks source link

install bug for db connect #70

Open bkfish opened 2 years ago

bkfish commented 2 years ago

In install/step9.php line 18:

$_SESSION["db.password"] = $_POST["db_password"]==""?$_POST["db_password"]:null;

this is a Logical bug i think change it to

$_SESSION["db.password"] = $_POST["db_password"]==""?null:$_POST["db_password"];
github-actions[bot] commented 2 years ago

Hello and welcome to USOC. Thanks for helping us to make USOC better.

Aaron-Junker commented 2 years ago

Thanks for reporting this!