Bugzilla – Attachment 97585 Details for
Bug 23844
Noisy warns in addbiblio.pl when importing from Z3950
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 23844: Check if field defined in framework and specify 'Default' for framework
Bug-23844-Check-if-field-defined-in-framework-and-.patch (text/plain), 3.24 KB, created by
Myka Kennedy Stephens
on 2020-01-19 01:21:16 UTC
(
hide
)
Description:
Bug 23844: Check if field defined in framework and specify 'Default' for framework
Filename:
MIME Type:
Creator:
Myka Kennedy Stephens
Created:
2020-01-19 01:21:16 UTC
Size:
3.24 KB
patch
obsolete
>From c264928f35ea727efce169858d149d0701dc9a19 Mon Sep 17 00:00:00 2001 >From: Nick <nick@bywatersolutions.com> >Date: Fri, 18 Oct 2019 18:26:38 +0000 >Subject: [PATCH] Bug 23844: Check if field defined in framework and specify > 'Default' for framework > >To test: >1 - Go to Cataloguing >2 - New from Z3950 >3 - Find an import a record >4 - Check the plack logs: >Use of uninitialized value in string ne at /kohadevbox/koha/cataloguing/addbiblio.pl line 565. >Use of uninitialized value in string ne at /kohadevbox/koha/cataloguing/addbiblio.pl line 580. >Use of uninitialized value $frameworkcode in string eq at /kohadevbox/koha/cataloguing/addbiblio.pl line 711. >Use of uninitialized value $frameworkcode in string eq at /kohadevbox/koha/cataloguing/addbiblio.pl line 715. >Use of uninitialized value $frameworkcode in string eq at /kohadevbox/koha/cataloguing/addbiblio.pl line 734. >5 - Apply patch >6 - Repeat >7 - No new errors >8 - Confirm selecting 'Default' from 'New from Z3950' dropdown also generates no errors > >Signed-off-by: Myka Kennedy Stephens <mkstephens@lancasterseminary.edu> >--- > cataloguing/addbiblio.pl | 2 +- > koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbooks.tt | 4 ++-- > 2 files changed, 3 insertions(+), 3 deletions(-) > >diff --git a/cataloguing/addbiblio.pl b/cataloguing/addbiblio.pl >index a548bab8a6..49ca332e3a 100755 >--- a/cataloguing/addbiblio.pl >+++ b/cataloguing/addbiblio.pl >@@ -559,7 +559,7 @@ sub build_tabs { > my $subfield = $subfields[$subfieldcount][0]; > my $value = $subfields[$subfieldcount][1]; > next if ( length $subfield != 1 ); >- next if ( $tagslib->{$tag}->{$subfield}->{tab} ne $tabloop ); >+ next if ( !defined $tagslib->{$tag}->{$subfield} || $tagslib->{$tag}->{$subfield}->{tab} ne $tabloop ); > push( > @subfields_data, > &create_input( >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbooks.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbooks.tt >index 90f80bf235..100cabdfb0 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbooks.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbooks.tt >@@ -37,7 +37,7 @@ > <span class="caret"></span> > </button> > <ul class="dropdown-menu"> >- <li class="z3950searchFw"><a href="#">Default framework</a></li> >+ <li id="Default" class="z3950searchFw"><a href="#">Default framework</a></li> > [% FOREACH framework IN frameworks %] > <li id="[% framework.frameworkcode | html %]" class="z3950searchFw"><a href="#">[% framework.frameworktext | html %]</a></li> > [% END %] >@@ -227,7 +227,7 @@ > $("input[name=q]:eq(0)").focus(); > > $("#z3950search").click(function(){ >- PopupZ3950(""); >+ PopupZ3950("Default"); > return false; > }); > >-- >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 23844
:
94416
|
97585
|
98446