https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20447
--- Comment #314 from Joonas Kylmälä <[email protected]> --- This patch set causes following error in error logs: > Use of uninitialized value in concatenation (.) or string at > /usr/share/koha/intranet/cgi-bin/cataloguing/additem.pl line 242. > 242 $authorised_lib{$holding->{holding_id}} = $holding->{holding_id} . ' ' > . $holding->{holdingbranch} . ' ' . $holding->{location} . ' ' . > $holding->{ccode} . ' ' . $holding->{callnumber}; Before using the values in string one should check whether the string is defined. -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
