diff options
author | plegall <plg@piwigo.org> | 2016-01-01 20:37:33 +0100 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2016-01-01 20:37:33 +0100 |
commit | f4040a5a3a4fd371a230c54e17f819922c9a39b2 (patch) | |
tree | a40237d60d000029408f012e447b0d77f0733d4b /include | |
parent | 4aeedb5a2ea455c503721de29a35e8a3c1fa0a9d (diff) |
forgotten to give user_status on recursive call in create_user_auth_key, bug detected by @mistic100
Diffstat (limited to '')
-rw-r--r-- | include/functions_user.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/functions_user.inc.php b/include/functions_user.inc.php index 915b7dbd0..ba4ed6808 100644 --- a/include/functions_user.inc.php +++ b/include/functions_user.inc.php @@ -1591,7 +1591,7 @@ SELECT } else { - return create_user_auth_key($user_id); + return create_user_auth_key($user_id, $user_status); } } ?>
\ No newline at end of file |