projects
/
working
/
Evergreen.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ecabe4c
)
LP#1468422 SIP password verification
author
Bill Erickson
<berickxx@gmail.com>
Tue, 24 Nov 2015 16:46:32 +0000
(11:46 -0500)
committer
Bill Erickson
<berickxx@gmail.com>
Tue, 24 Nov 2015 16:46:32 +0000
(11:46 -0500)
Signed-off-by: Bill Erickson <berickxx@gmail.com>
Open-ILS/src/perlmods/lib/OpenILS/SIP/Patron.pm
patch
|
blob
|
history
diff --git
a/Open-ILS/src/perlmods/lib/OpenILS/SIP/Patron.pm
b/Open-ILS/src/perlmods/lib/OpenILS/SIP/Patron.pm
index
ac4f05c
..
92f0e56
100644
(file)
--- a/
Open-ILS/src/perlmods/lib/OpenILS/SIP/Patron.pm
+++ b/
Open-ILS/src/perlmods/lib/OpenILS/SIP/Patron.pm
@@
-350,7
+350,8
@@
sub check_password {
my ($self, $pwd) = @_;
syslog('LOG_DEBUG', 'OILS: Patron->check_password()');
return 0 unless (defined $pwd and $self->{user});
- return md5_hex($pwd) eq $self->{user}->passwd;
+ return $U->verify_migrated_user_password(
+ $self->{editor},$self->{user}->id, $pwd);
}
sub currency { # not really implemented