Bugzilla – Attachment 65026 Details for
Bug 18367
Fix untranslatable string from Bug 18264
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 18367 - Fix untranslatable string from Bug 18264
Bug-18367---Fix-untranslatable-string-from-Bug-182.patch (text/plain), 2.71 KB, created by
Jonathan Druart
on 2017-07-13 19:42:37 UTC
(
hide
)
Description:
Bug 18367 - Fix untranslatable string from Bug 18264
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2017-07-13 19:42:37 UTC
Size:
2.71 KB
patch
obsolete
>From 1fc3751804146e92c0d8d85517ffcd6ec338808e Mon Sep 17 00:00:00 2001 >From: Nick Clemens <nick@bywatersolutions.com> >Date: Tue, 11 Apr 2017 16:09:27 -0400 >Subject: [PATCH] Bug 18367 - Fix untranslatable string from Bug 18264 >MIME-Version: 1.0 >Content-Type: text/plain; charset=UTF-8 >Content-Transfer-Encoding: 8bit > >Restore display of message when no barcode found > >To test: >1 - Go to course reserves >2 - Add an item to a course >3 - Try adding an invalid barcode - should get an alert >4 - Try force adding an item with itemnumber: > http://localhost:8081/cgi-bin/koha/course_reserves/add_items.pl?op=lookpup&course_id=11&itemnumber=1234523546 >5 - Should recieve an error > >Signed-off-by: Frédéric Demians <f.demians@tamil.fr> > >Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >--- > course_reserves/add_items.pl | 8 +++++--- > .../prog/en/modules/course_reserves/add_items-step1.tt | 9 +++++++-- > 2 files changed, 12 insertions(+), 5 deletions(-) > >diff --git a/course_reserves/add_items.pl b/course_reserves/add_items.pl >index f48c113a37..35836997cf 100755 >--- a/course_reserves/add_items.pl >+++ b/course_reserves/add_items.pl >@@ -55,9 +55,11 @@ my ( $template, $loggedinuser, $cookie ) = get_template_and_user( > flagsrequired => { coursereserves => 'add_reserves' }, > } > ); >-my $inumber = $itemnumber ? "(blank) (itemnumber:$itemnumber)" : ""; >-$template->param( ERROR_BARCODE_NOT_FOUND => $barcode . $inumber ) >- unless ( $barcode && !$itemnumber && $item && $action eq 'lookup' ); >+ >+unless ( $item && $action eq 'lookup' ){ >+ $template->param( ERROR_ITEM_NOT_FOUND => 1 ); >+ $template->param( UNKNOWN_BARCODE => $barcode ) if $barcode; >+} > > $template->param( course => GetCourse($course_id) ); > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/course_reserves/add_items-step1.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/course_reserves/add_items-step1.tt >index b5036363ff..daf1602a3d 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/course_reserves/add_items-step1.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/course_reserves/add_items-step1.tt >@@ -11,8 +11,13 @@ > > <div id="doc" class="yui-t7"> > <div id="bd"> >- [% IF ERROR_BARCODE_NOT_FOUND %] >- <div class="dialog alert">No item found with barcode [% ERROR_BARCODE_NOT_FOUND %]</div> >+ >+ [% IF ERROR_ITEM_NOT_FOUND %] >+ [% IF UNKNOWN_BARCODE %] >+ <div class="dialog alert">No item found with barcode [% UNKNOWN_BARCODE %]</div> >+ [% ELSE %] >+ <div class="dialog alert">No item found</div> >+ [% END %] > [% END %] > > <form method="post" action="/cgi-bin/koha/course_reserves/add_items.pl"> >-- >2.11.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 18367
:
62065
|
64907
|
64933
| 65026 |
65311