]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Patch for bug 237840: eliminate case sensitivity for "attachment N" linkification...
authorjocuri%softhome.net <>
Mon, 22 Mar 2004 14:45:21 +0000 (14:45 +0000)
committerjocuri%softhome.net <>
Mon, 22 Mar 2004 14:45:21 +0000 (14:45 +0000)
globals.pl

index 019d6d97222874e2bf5c19966e83b585841fcd3d..771d81b318543be5499254034e24f90786864659 100644 (file)
@@ -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.