Bugzilla – Attachment 77889 Details for
Bug 21221
Implement blocking errors for members/memberentry.pl
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 21221: Shortcut memberentry scripts if patron does not exist
Bug-21221-Shortcut-memberentry-scripts-if-patron-d.patch (text/plain), 1.45 KB, created by
Martin Renvoize (ashimema)
on 2018-08-16 11:07:03 UTC
(
hide
)
Description:
Bug 21221: Shortcut memberentry scripts if patron does not exist
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2018-08-16 11:07:03 UTC
Size:
1.45 KB
patch
obsolete
>From 7e2e04a334f633b018246b8056f83b20d7b426f9 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Tue, 14 Aug 2018 16:26:39 -0300 >Subject: [PATCH] Bug 21221: Shortcut memberentry scripts if patron does not > exist > >If borrowernumber is passed and that it does not refer to a valid patron >in DB, we should not continue the script and display an error instead. > >Test plan: >Create a patron >Edit a patron >=> Both should work ok >You can also test the other action memberentry.pl manage. > >Edit it again but modify the borrowernumber parameter >=> You should see a friendly user message saying that the patron does >not exist. > >Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> >Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> >--- > members/memberentry.pl | 4 ++++ > 1 file changed, 4 insertions(+) > >diff --git a/members/memberentry.pl b/members/memberentry.pl >index 3618c4ffbe..2bf1a02f19 100755 >--- a/members/memberentry.pl >+++ b/members/memberentry.pl >@@ -78,6 +78,10 @@ my ($template, $loggedinuser, $cookie) > my $borrowernumber = $input->param('borrowernumber'); > my $patron = Koha::Patrons->find($borrowernumber); > >+if ( $borrowernumber and not $patron ) { >+ output_and_exit( $input, $cookie, $template, 'unknown_patron' ); >+} >+ > if ( C4::Context->preference('SMSSendDriver') eq 'Email' ) { > my @providers = Koha::SMS::Providers->search(); > $template->param( sms_providers => \@providers ); >-- >2.18.0
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 21221
:
77800
|
77810
| 77889