diff options
author | Lukas Fleischer <lfleischer@archlinux.org> | 2017-02-26 22:01:47 +0100 |
---|---|---|
committer | Lukas Fleischer <lfleischer@archlinux.org> | 2017-02-27 18:19:08 +0100 |
commit | f2357a1724334ce27bc7fad2a59b16a247b8246c (patch) | |
tree | ef5c3af75d357dad536664bb18213e7ae81ccf55 /web/lib/acctfuncs.inc.php | |
parent | 22e8ff0bb6806811f9bd45ad9edb6ef52ec8cebf (diff) | |
download | aur-f2357a1724334ce27bc7fad2a59b16a247b8246c.tar.gz aur-f2357a1724334ce27bc7fad2a59b16a247b8246c.tar.xz |
Do not quote legacy variable
The $salt variable is no longer needed as of 29a4870 (Use bcrypt to hash
passwords, 2017-02-24).
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
Diffstat (limited to 'web/lib/acctfuncs.inc.php')
-rw-r--r-- | web/lib/acctfuncs.inc.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/web/lib/acctfuncs.inc.php b/web/lib/acctfuncs.inc.php index 5f7f1f4c..63ab4b4a 100644 --- a/web/lib/acctfuncs.inc.php +++ b/web/lib/acctfuncs.inc.php @@ -282,7 +282,6 @@ function process_account_form($TYPE,$A,$U="",$T="",$S="",$E="",$H="",$P="",$C="" $U = $dbh->quote($U); $E = $dbh->quote($E); $P = $dbh->quote($P); - $salt = $dbh->quote($salt); $R = $dbh->quote($R); $L = $dbh->quote($L); $TZ = $dbh->quote($TZ); |