summaryrefslogtreecommitdiffstats
path: root/globals.pl
diff options
context:
space:
mode:
authorjocuri%softhome.net <>2004-03-22 15:45:21 +0100
committerjocuri%softhome.net <>2004-03-22 15:45:21 +0100
commitf1bab4d2dda16c2e87c7b21a3326f82a1145f926 (patch)
treeef3a363a99a9b92267dd7a26fb96d6ff4caa70c7 /globals.pl
parent3845053c48241482fda2033c3de7c78676d46f5d (diff)
downloadbugzilla-f1bab4d2dda16c2e87c7b21a3326f82a1145f926.tar.gz
bugzilla-f1bab4d2dda16c2e87c7b21a3326f82a1145f926.tar.xz
Patch for bug 237840: eliminate case sensitivity for "attachment N" linkification; r=kiko, a=justdave.
Diffstat (limited to 'globals.pl')
-rw-r--r--globals.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/globals.pl b/globals.pl
index 019d6d972..771d81b31 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.