diff options
author | Ehsan Akhgari <ehsan@mozilla.com> | 2010-07-15 00:00:44 -0400 |
---|---|---|
committer | Ehsan Akhgari <ehsan@mozilla.com> | 2010-07-15 00:00:44 -0400 |
commit | 71824a40eedbbbd6171f719f1df2461340e05b09 (patch) | |
tree | 8ce247fe1784926d7b6442f5f5e1350fcc8271af | |
parent | 9c387f4dbe22a7dab3dfbe9ee2a05f6ff8c90dcf (diff) | |
download | bugzilla-triage-71824a40eedbbbd6171f719f1df2461340e05b09.tar.gz |
Tweak the regular expression to support linkifying attachment flags in Bugzilla 3.6 again
-rw-r--r-- | lib/main.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/main.js b/lib/main.js index bc5d503..335c393 100644 --- a/lib/main.js +++ b/lib/main.js @@ -708,7 +708,7 @@ AttachmentFlagHandlerCtor.prototype = { _reParseInterestingFlag: /^(.+):\s+(.+)(([\-\+])|\?(\s+(\((.+)\)))?)$/, _reLinkifyInterestingFlag: /^(.+:\s+)(.+[\-\+\?])(\s+\(.+\))?$/, _reAttachmentHref: /attachment\.cgi\?id=(\d+)$/i, - _reAttachmentFlagName: /^Attachment\s+#(\d+)\s+Flag$/i + _reAttachmentFlagName: /^Attachment\s+#(\d+)\s+Flags$/i }; function CheckinCommentCtor() { |