diff options
author | Matt Selsky <selsky_at_columbia_dot_edu> | 2011-06-06 22:18:44 +0200 |
---|---|---|
committer | David Lawrence <dlawrence@mozilla.com> | 2011-06-06 22:18:44 +0200 |
commit | 4697310074223a52423e118a3474cb2342e5248c (patch) | |
tree | de73cbd88fbf7c7f4b75fcc73ef8e0bb7c2d4ba7 /Bugzilla | |
parent | 8532de99d9b6d1a1ec53e9fb2f6ef7374fab4674 (diff) | |
download | bugzilla-4697310074223a52423e118a3474cb2342e5248c.tar.gz bugzilla-4697310074223a52423e118a3474cb2342e5248c.tar.xz |
Bug 649281 - Add ircs:// to url protocols for external links in comment
author=Matt Selsky, r=dkl, a=LpSolit
Diffstat (limited to 'Bugzilla')
-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', |