@@ -, +, @@ branchoverdues.pl 1) Head over to "Circulation ->Overdues with fines" page. Check intranet-error.log where there will be many warnings "Use of uninitialized value $location in string eq at /usr/share/koha/intranet/cgi-bin/circ/branchoverdues.pl line 72". 2) Apply the patch, refresh the "Overdues with fines" page. 3) Ensure that the new "use of uninitialized value" warnings didn't appear in the console. --- circ/branchoverdues.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/circ/branchoverdues.pl +++ a/circ/branchoverdues.pl @@ -69,7 +69,7 @@ my ($tag,$subfield) = GetMarcFromKohaField( 'items.location' ); my $tagslib = &GetMarcStructure(1,''); if ($tagslib->{$tag}->{$subfield}->{authorised_value}) { my $values= GetAuthorisedValues($tagslib->{$tag}->{$subfield}->{authorised_value}); - for (@$values) { $_->{selected} = 1 if $location eq $_->{authorised_value} } + for (@$values) { $_->{selected} = 1 if defined $location && $location eq $_->{authorised_value} } $template->param(locationsloop => $values); } # now display infos --