From: jocuri%softhome.net <> Date: Mon, 22 Mar 2004 14:45:21 +0000 (+0000) Subject: Patch for bug 237840: eliminate case sensitivity for "attachment N" linkification... X-Git-Tag: bugzilla-2.18rc1~156 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f1bab4d2dda16c2e87c7b21a3326f82a1145f926;p=thirdparty%2Fbugzilla.git Patch for bug 237840: eliminate case sensitivity for "attachment N" linkification; r=kiko, a=justdave. --- diff --git a/globals.pl b/globals.pl index 019d6d9722..771d81b318 100644 --- a/globals.pl +++ b/globals.pl @@ -915,7 +915,7 @@ sub quoteUrls { $text =~ s~\b(attachment\s*\#?\s*(\d+)) ~GetAttachmentLink($2, $1) - ~egmx; + ~egmxi; # This handles bug a, comment b type stuff. Because we're using /g # we have to do this in one pattern, and so this is semi-messy.