https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23084
--- Comment #15 from Bernardo Gonzalez Kriegel <[email protected]> --- It applies now, no (new) qa errors. Just a question: In C4/TAGS.pm you replace scalar grep {/^ $key $/x} @ok_fields with scalar grep { $_ eq $key } @ok_fields Is this correct? The spaces in '/^ $key $/x' are in the matching string (by way of /x), then perhaps scalar grep { $_ eq " $key " } @ok_fields is preferable. -- 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/
