summaryrefslogtreecommitdiffstats
path: root/search_plugin.cgi
diff options
context:
space:
mode:
authorByron Jones <bjones@mozilla.com>2013-03-25 16:20:22 +0100
committerByron Jones <bjones@mozilla.com>2013-03-25 16:20:22 +0100
commitd01c45b93c62802f7f477a70deb21c9d9432675e (patch)
tree8f3a7a511cad8c2396e1300b1dbae504c6da97d0 /search_plugin.cgi
parent64a789e7629fa8b20f68267245d7fe79dd14d41a (diff)
downloadbugzilla-d01c45b93c62802f7f477a70deb21c9d9432675e.tar.gz
bugzilla-d01c45b93c62802f7f477a70deb21c9d9432675e.tar.xz
Bug 854412: search plugin does not use bmo favicon but the generic dino head
Diffstat (limited to 'search_plugin.cgi')
-rwxr-xr-xsearch_plugin.cgi8
1 files changed, 0 insertions, 8 deletions
diff --git a/search_plugin.cgi b/search_plugin.cgi
index 4dfe8fa9f..b50467911 100755
--- a/search_plugin.cgi
+++ b/search_plugin.cgi
@@ -31,13 +31,5 @@ my $vars = {};
# Return the appropriate HTTP response headers.
print $cgi->header('application/xml');
-# Get the contents of favicon.ico
-my $filename = bz_locations()->{'libpath'} . "/images/favicon.ico";
-if (open(IN, $filename)) {
- local $/;
- binmode IN;
- $vars->{'favicon'} = <IN>;
- close IN;
-}
$template->process("search/search-plugin.xml.tmpl", $vars)
|| ThrowTemplateError($template->error());