Skip to content

Commit

Permalink
Fix password field name
Browse files Browse the repository at this point in the history
  • Loading branch information
daris committed Jan 21, 2012
1 parent 4615c70 commit fac7ac2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.php
Expand Up @@ -58,7 +58,7 @@
'host' => isset($_POST['req_old_db_host']) ? trim($_POST['req_old_db_host']) : null,
'name' => isset($_POST['req_old_db_name']) ? trim($_POST['req_old_db_name']) : null,
'username' => isset($_POST['old_db_username']) ? trim($_POST['old_db_username']) : null,
'password' => isset($_POST['old_db_pass']) ? $_POST['old_db_pass'] : '',
'password' => isset($_POST['old_db_password']) ? $_POST['old_db_password'] : '',
'prefix' => isset($_POST['old_db_prefix']) ? trim($_POST['old_db_prefix']) : '',
'charset' => isset($_POST['old_db_charset']) ? trim($_POST['old_db_charset']) : 'UTF-8'
);
Expand Down

0 comments on commit fac7ac2

Please sign in to comment.