diff options
Diffstat (limited to 'rt/lib/RT/URI/a.pm')
-rw-r--r-- | rt/lib/RT/URI/a.pm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/rt/lib/RT/URI/a.pm b/rt/lib/RT/URI/a.pm index eca253fa5..baab6585e 100644 --- a/rt/lib/RT/URI/a.pm +++ b/rt/lib/RT/URI/a.pm @@ -51,8 +51,8 @@ package RT::URI::a; use strict; use warnings; -use RT::Article; use base qw/RT::URI::fsck_com_article/; +use RT::Article; my $scheme = "a"; @@ -71,11 +71,11 @@ sub ParseURI { # articles after stripping off the a: prefix. if ($uri =~ /^$scheme:(\d+)/) { - my $value = $1; - return $self->SUPER::ParseURI($value); + my $value = $1; + return $self->SUPER::ParseURI($value); } else { - $self->{'uri'} = $uri; - return undef; + $self->{'uri'} = $uri; + return undef; } } |