https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=22738
--- Comment #10 from Katrin Fischer <[email protected]> --- If you had "MA " as your categorycode, Perl will not match that to "MA". It's not likely, but we have run into this. Try something like: select * from categories where categorycode like "MA" If you do select * from categories where categorycode = "MA" it will always be found, whitespace or not. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. _______________________________________________ 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/
