Bugzilla – Attachment 84882 Details for
Bug 17347
'Renew' tab should ignore whitespace at begining and end of barcode
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 17347: Ignore whitespace before and after on renewing
Bug-17347-Ignore-whitespace-before-and-after-on-re.patch (text/plain), 1.27 KB, created by
Martin Renvoize (ashimema)
on 2019-02-08 16:41:07 UTC
(
hide
)
Description:
Bug 17347: Ignore whitespace before and after on renewing
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2019-02-08 16:41:07 UTC
Size:
1.27 KB
patch
obsolete
>From 384dbdb0163ce772be3517922847eae4d16ec9c9 Mon Sep 17 00:00:00 2001 >From: Katrin Fischer <katrin.fischer.83@web.de> >Date: Mon, 14 Jan 2019 05:41:48 +0000 >Subject: [PATCH] Bug 17347: Ignore whitespace before and after on renewing > >When an item is checked out, Koha ignores whitespace >at the beginning and the end of the entered barcode. >This makes life easier, if a barcode is C&P from another >page. This patch makes the renewal page behave the same. > >To test: >- Checkout an item >- Renew the item from the renew tab or renewal page > entering the barcode with leading and trailing > whitespace >- "Barcode not found" >- Apply patch >- Try again >- Barcode should be found now > >Signed-off-by: Owen Leonard <oleonard@myacpl.org> >Signed-off-by: Devinim <kohadevinim@devinim.com.tr> >Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> >--- > circ/renew.pl | 1 + > 1 file changed, 1 insertion(+) > >diff --git a/circ/renew.pl b/circ/renew.pl >index 246c26629f..5304f405ae 100755 >--- a/circ/renew.pl >+++ b/circ/renew.pl >@@ -52,6 +52,7 @@ my $error = q{}; > my ( $soonest_renew_date, $latest_auto_renew_date ); > > if ($barcode) { >+ $barcode =~ s/^\s*|\s*$//g; # remove leading/trailing whitespace > $item = $schema->resultset("Item")->single( { barcode => $barcode } ); > > if ($item) { >-- >2.20.1
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 17347
:
83918
|
83988
|
84151
| 84882