https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=24562 --- Comment #20 from Jonathan Druart <jonathan.druart+koha@gmail.com> --- I don't recreate on master. * Did you try a more recent version? * Are you able to recreate the problem on a sandbox? https://wiki.koha-community.org/wiki/Sandboxes * Does the following change fix the problem? diff --git a/C4/Search.pm b/C4/Search.pm index 0db460a8083..17b0ab33f87 100644 --- a/C4/Search.pm +++ b/C4/Search.pm @@ -102,6 +102,7 @@ sub FindDuplicate { $result->{title} =~ s /\\//g; $result->{title} =~ s /\"//g; + $result->{title} =~ s /\'//g; $result->{title} =~ s /\(//g; $result->{title} =~ s /\)//g; -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug.