From: Jonathan Druart Date: Fri, 19 Aug 2016 15:09:55 +0000 (+0100) Subject: Bug 17118: (follow-up 15381) Fix regression when clearing a linked authority X-Git-Url: http://git.rot13.org/?a=commitdiff_plain;h=58661d9b4be3398c24bbac8147a2d0b3f1f95d45;p=koha.git Bug 17118: (follow-up 15381) Fix regression when clearing a linked authority Changes made on bug 15381 assumed that the authid was always set. But if the user wants to clear the field of the authority, the script is called with authid=0 (FIXME...) To fix this issue, it's better to move the new calls to Koha::Authorities->find($authid)->authtypecode and Koha::Authority::Types->find($authtypecode); at the correct place Test plan: 1. Edit a record which has a field linked to an authority record (100a for instance). 2. Click the link which triggers the tag editor. A pop-up window should be displayed. 3. In the pop-up window, click the "Clear field" button. => Without this patch A second pop-up window opens and displays an error: Can't call method "authtypecode" on an undefined value at /authorities/blinddetail-biblio-search.pl line 61. => With this patch applied the field is correctly cleared. Signed-off-by: Aleisha Amohia Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall --- diff --git a/authorities/blinddetail-biblio-search.pl b/authorities/blinddetail-biblio-search.pl index cab9c74456..33b7ef0666 100755 --- a/authorities/blinddetail-biblio-search.pl +++ b/authorities/blinddetail-biblio-search.pl @@ -58,14 +58,6 @@ my $authid = $query->param('authid'); my $index = $query->param('index'); my $tagid = $query->param('tagid'); my $relationship = $query->param('relationship'); -my $authtypecode = Koha::Authorities->find($authid)->authtypecode; -my $tagslib = &GetTagsLabels( 1, $authtypecode ); - -my $auth_type = Koha::Authority::Types->find($authtypecode); -my $record; -if ($authid) { - $record = GetAuthority($authid); -} # open template my ( $template, $loggedinuser, $cookie ) = get_template_and_user( @@ -82,6 +74,9 @@ my ( $template, $loggedinuser, $cookie ) = get_template_and_user( my @subfield_loop; my ($indicator1, $indicator2); if ($authid) { + my $authtypecode = Koha::Authorities->find($authid)->authtypecode; + my $auth_type = Koha::Authority::Types->find($authtypecode); + my $record = GetAuthority($authid); my @fields = $record->field( $auth_type->auth_tag_to_report ); my $repet = ($query->param('repet') || 1) - 1; my $field = $fields[$repet];