Bugzilla – Attachment 83608 Details for
Bug 22059
Wrong exception parameters in Koha::Patron->set_password
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 22059: Fix exception params in Koha::Patron->set_password
Bug-22059-Fix-exception-params-in-KohaPatron-setpa.patch (text/plain), 1.30 KB, created by
Josef Moravec
on 2019-01-02 21:07:47 UTC
(
hide
)
Description:
Bug 22059: Fix exception params in Koha::Patron->set_password
Filename:
MIME Type:
Creator:
Josef Moravec
Created:
2019-01-02 21:07:47 UTC
Size:
1.30 KB
patch
obsolete
>From 9e8d822d757ecd951fbf0af45bf20c2bb2b718dc Mon Sep 17 00:00:00 2001 >From: Tomas Cohen Arazi <tomascohen@theke.io> >Date: Wed, 2 Jan 2019 09:56:52 -0300 >Subject: [PATCH] Bug 22059: Fix exception params in Koha::Patron->set_password > >This simple patch fixes a wrong call to ->throw. Parameters shouldn't be >enclosed in curly brackets. > >To test: >- Apply the tests patch >- Run: > $ kshell > k$ prove t/db_dependent/Koha/Patrons.t >=> FAIL: Tests fail because the throw call is wrong >- Apply this patch >- Run: > k$ prove t/db_dependent/Koha/Patrons.t >=> SUCCESS: Tests pass! >-Sign off :-D > >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> > >Signed-off-by: Josef Moravec <josef.moravec@gmail.com> >--- > Koha/Patron.pm | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/Koha/Patron.pm b/Koha/Patron.pm >index 5831034..3a079f6 100644 >--- a/Koha/Patron.pm >+++ b/Koha/Patron.pm >@@ -703,7 +703,7 @@ sub set_password { > > my $password_length = length($password); > Koha::Exceptions::Password::TooShort->throw( >- { length => $password_length, min_length => $min_length } ); >+ length => $password_length, min_length => $min_length ); > } > elsif ( $error eq 'has_whitespaces' ) { > Koha::Exceptions::Password::WhitespaceCharacters->throw(); >-- >2.1.4
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 22059
:
83574
|
83575
|
83576
|
83577
|
83607
| 83608