diff options
author | David Lawrence <dlawrence@mozilla.com> | 2011-02-23 07:06:05 +0100 |
---|---|---|
committer | David Lawrence <dlawrence@mozilla.com> | 2011-02-23 07:06:05 +0100 |
commit | 90062dd4e7d12189ee75bce626aaf4c6d9e3723d (patch) | |
tree | 4ec9e91be889eea91469e04701ff7389e091b755 /Bugzilla | |
parent | 60712d5d6f5db2a468bea0447744c06d5e8a487c (diff) | |
download | bugzilla-90062dd4e7d12189ee75bce626aaf4c6d9e3723d.tar.gz bugzilla-90062dd4e7d12189ee75bce626aaf4c6d9e3723d.tar.xz |
Bug 609968 - Allow local See Also links to show status/summary when mouseover
r=timello,a=mkanat
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/BugUrl/Bugzilla.pm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Bugzilla/BugUrl/Bugzilla.pm b/Bugzilla/BugUrl/Bugzilla.pm index f8e714d9d..53f174556 100644 --- a/Bugzilla/BugUrl/Bugzilla.pm +++ b/Bugzilla/BugUrl/Bugzilla.pm @@ -59,4 +59,9 @@ sub _check_value { return $uri; } +sub target_bug_id { + my ($self) = @_; + return new URI($self->name)->query_param('id'); +} + 1; |