https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=22290
George Veranis <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #1 from George Veranis <[email protected]> --- Based on https://www.perlmonks.org/bare/?node_id=495747 and that answer " Won't that escape data twice? Without actually running it, it looks like "\x{1234}" would be transformed by uri_escape_utf8 into "%C8%B4" which would be transformed by POST into "%25C8%25B4" while the right answer would be "%C8%B4" " I add the line $query_cgi = Encode::decode_utf8(uri_unescape($query_cgi)); at 587 of opac-search.pl and it works I will try later to do a patch for that. -- You are receiving this mail because: You are the assignee for the bug. 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/
