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:
parent
e5b38c33b9
commit
9f97b26ff6
@ -1 +1 @@
|
||||
8095
|
||||
8096
|
||||
@ -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 {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user