[Bug 12364] New: Useless use of '\'; doesn't escape metacharacter '('
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12364 Bug ID: 12364 Summary: Useless use of '\'; doesn't escape metacharacter '(' Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: Architecture, internals, and plumbing Assignee: gmcharlt@gmail.com Reporter: jcamins@cpbibliography.com QA Contact: testopia@bugs.koha-community.org With the latest version of Perl, there is the following error in C4::AuthoritiesMarc::FindDuplicateAuthority: Useless use of '\'; doesn't escape metacharacter '(' at /home/jcamins/kohaclone/C4/AuthoritiesMarc.pm line 856. That doesn't seem good. -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12364 Marco Moreno <mmoreno@pobox.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Priority|P5 - low |P3 CC| |mmoreno@pobox.com --- Comment #1 from Marco Moreno <mmoreno@pobox.com> --- This is due to unnecessary escapes inside a bracketed character class. Locate C4/AuthoritiesMarc.pm (for me it was in /usr/share/koha/lib) and replace line 856 containing this: my $filtervalues=qr([\001-\040\!\'\"\`\#\$\%\&\*\+,\-\./:;<=>\?\@\(\)\{\[\]\}_\|\~]); with this: my $filtervalues=qr([\001-\040!'"`#$%&*+,\-.:;<=>?@(){}\[\]_|~]); (See 'man perlrecharclass' under the section 'Special Characters Inside a Bracketed Character Class'.) I raised this to medium importance due to getting flooded with cron emails every 5 minutes. And if nullmailer is not configured immediately after installation, log files will grow to enormous sizes. (In just a few weeks, my logs grew to well over 10GB and I ran out of disk space.) -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12364 Marc Véron <veron@veron.ch> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |veron@veron.ch -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12364 Jonathan Druart <jonathan.druart@biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jonathan.druart@biblibre.co | |m Resolution|--- |DUPLICATE Status|NEW |RESOLVED --- Comment #2 from Jonathan Druart <jonathan.druart@biblibre.com> --- *** This bug has been marked as a duplicate of bug 12654 *** -- You are receiving this mail because: You are watching all bug changes.
participants (1)
-
bugzilla-daemon@bugs.koha-community.org