diff options
author | Matt Selsky <selsky_at_columbia_dot_edu> | 2011-06-06 16:18:44 -0400 |
---|---|---|
committer | David Lawrence <dlawrence@mozilla.com> | 2011-06-06 16:18:44 -0400 |
commit | 4697310074223a52423e118a3474cb2342e5248c (patch) | |
tree | de73cbd88fbf7c7f4b75fcc73ef8e0bb7c2d4ba7 | |
parent | 8532de99d9b6d1a1ec53e9fb2f6ef7374fab4674 (diff) | |
download | bugs-4697310074223a52423e118a3474cb2342e5248c.tar bugs-4697310074223a52423e118a3474cb2342e5248c.tar.gz bugs-4697310074223a52423e118a3474cb2342e5248c.tar.bz2 bugs-4697310074223a52423e118a3474cb2342e5248c.tar.xz bugs-4697310074223a52423e118a3474cb2342e5248c.zip |
Bug 649281 - Add ircs:// to url protocols for external links in comment
author=Matt Selsky, r=dkl, a=LpSolit
-rw-r--r-- | Bugzilla/Constants.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Bugzilla/Constants.pm b/Bugzilla/Constants.pm index bfa0d22de..32c74e920 100644 --- a/Bugzilla/Constants.pm +++ b/Bugzilla/Constants.pm @@ -429,8 +429,8 @@ use constant MAX_STS_AGE => 604800; # Protocols which are considered as safe. use constant SAFE_PROTOCOLS => ('afs', 'cid', 'ftp', 'gopher', 'http', 'https', - 'irc', 'mid', 'news', 'nntp', 'prospero', 'telnet', - 'view-source', 'wais'); + 'irc', 'ircs', 'mid', 'news', 'nntp', 'prospero', + 'telnet', 'view-source', 'wais'); # Valid MIME types for attachments. use constant LEGAL_CONTENT_TYPES => ('application', 'audio', 'image', 'message', |