Bug 717217: The regexp in Bugzilla::BugUrl::JIRA::should_handle() isn't

restrictive enough (min two letters required)
r=timello, a=LpSolit


git-svn-id: svn://10.0.0.236/trunk@263315 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mkanat%bugzilla.org 2012-01-25 20:19:12 +00:00
parent e5b38c33b9
commit 9f97b26ff6
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
8095
8096

View File

@ -18,7 +18,7 @@ use Bugzilla::Util;
sub should_handle {
my ($class, $uri) = @_;
return ($uri->path =~ m|/browse/[A-Z]+-\d+$|) ? 1 : 0;
return ($uri->path =~ m|/browse/[A-Z][A-Z]+-\d+$|) ? 1 : 0;
}
sub _check_value {