aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla/BugUrl/Flyspray.pm')
-rw-r--r--Bugzilla/BugUrl/Flyspray.pm20
1 files changed, 10 insertions, 10 deletions
diff --git a/Bugzilla/BugUrl/Flyspray.pm b/Bugzilla/BugUrl/Flyspray.pm
index 86583fc4b..0edf55141 100644
--- a/Bugzilla/BugUrl/Flyspray.pm
+++ b/Bugzilla/BugUrl/Flyspray.pm
@@ -14,23 +14,23 @@ use base qw(Bugzilla::BugUrl);
###############################
sub should_handle {
- my ($class, $uri) = @_;
+ my ($class, $uri) = @_;
- # Flyspray URLs look like the following:
- # https://bugs.flyspray.org/task/1237
- # https://bugs.archlinux.org/task/44825
- return ($uri->path_query =~ m|/task/\d+$|) ? 1 : 0;
+ # Flyspray URLs look like the following:
+ # https://bugs.flyspray.org/task/1237
+ # https://bugs.archlinux.org/task/44825
+ return ($uri->path_query =~ m|/task/\d+$|) ? 1 : 0;
}
sub _check_value {
- my $class = shift;
+ my $class = shift;
- my $uri = $class->SUPER::_check_value(@_);
+ my $uri = $class->SUPER::_check_value(@_);
- # Remove any # part if there is one.
- $uri->fragment(undef);
+ # Remove any # part if there is one.
+ $uri->fragment(undef);
- return $uri;
+ return $uri;
}
1;