Skip to content

Commit

Permalink
Fixed bug in initial user's password hash
Browse files Browse the repository at this point in the history
  • Loading branch information
evaK-de committed Jan 5, 2017
1 parent f208ff9 commit 2849b13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions install.php
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,8 @@ function randomPassword() {
break;
}

$user = $_POST["name"];
$pass = $_POST["pass"];
$user = getArrayVal($_POST, "name");
$pass = getArrayVal($_POST, "pass");

// create the first user
$usr = new user();
Expand Down

0 comments on commit 2849b13

Please sign in to comment.