diff options
author | Byron Jones <bjones@mozilla.com> | 2013-03-06 09:40:29 +0100 |
---|---|---|
committer | Byron Jones <bjones@mozilla.com> | 2013-03-06 09:40:29 +0100 |
commit | 4ac63bb2181e9e07851bf73520cd068818947b6a (patch) | |
tree | 8d6098dbfec3248686519c7f5577eb8c47115e3c /extensions/ProdCompSearch/Extension.pm | |
parent | 6b5c91b2f020e9a1ab0e9efd5d4d339fa8f7b22d (diff) | |
download | bugzilla-4ac63bb2181e9e07851bf73520cd068818947b6a.tar.gz bugzilla-4ac63bb2181e9e07851bf73520cd068818947b6a.tar.xz |
Bug 848217: The product component search field is not putting bugzilla.mozilla.org components before upstream Bugzilla components
Diffstat (limited to 'extensions/ProdCompSearch/Extension.pm')
-rw-r--r-- | extensions/ProdCompSearch/Extension.pm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/extensions/ProdCompSearch/Extension.pm b/extensions/ProdCompSearch/Extension.pm index 4a4fae355..a5955fd8b 100644 --- a/extensions/ProdCompSearch/Extension.pm +++ b/extensions/ProdCompSearch/Extension.pm @@ -11,4 +11,11 @@ use base qw(Bugzilla::Extension); our $VERSION = '1'; +sub webservice { + my ($self, $args) = @_; + my $dispatch = $args->{dispatch}; + $dispatch->{PCS} = "Bugzilla::Extension::ProdCompSearch::WebService"; +} + + __PACKAGE__->NAME; |