https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=18400
Pongtawat <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #12 from Pongtawat <[email protected]> --- We also encounter this problem in 16.11. My teammate found out the reason for $itemtype corruption was line 291: searchcategory => $itemtypes->{$thisitemtype}->{'searchcategory'}, This automatically add a hash ->{'searchcategory'} to $itemtypes. The correct code should likely be: searchcategory => $thisitemtype->{'searchcategory'}, I attached a patch for 16.11. We tested this on our 16.11 installation and it also fix the problem. -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] http://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/
