https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=18179
Jonathan Druart <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] | |ommunity.org --- Comment #6 from Jonathan Druart <[email protected]> --- Yes we have a big problem here, it may be needed to fix it globally. For instance: in members/memberentry.pl 755 $template->param( 756 housebound_role => Koha::Patron::HouseboundRoles->find($borrowernumber), 757 ); If someone add a param: 755 $template->param( 756 housebound_role => Koha::Patron::HouseboundRoles->find($borrowernumber), 757 foo => 1, 758 ); housebound_role will be set to 'foo' if the patron does not have a housebound role, and foo will not be defined in the template. -- 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/
