diff --git a/mozilla/webtools/bugzilla/Bugzilla/Template.pm b/mozilla/webtools/bugzilla/Bugzilla/Template.pm index 800536cd513..42c45823e57 100644 --- a/mozilla/webtools/bugzilla/Bugzilla/Template.pm +++ b/mozilla/webtools/bugzilla/Bugzilla/Template.pm @@ -187,22 +187,6 @@ sub getTemplateIncludePath { return Bugzilla->request_cache->{"template_include_path_$lang"}; } -sub put_header { - my $self = shift; - my $vars = {}; - ($vars->{'title'}, $vars->{'h1'}, $vars->{'h2'}) = (@_); - - $self->process("global/header.html.tmpl", $vars) - || ThrowTemplateError($self->error()); - $vars->{'header_done'} = 1; -} - -sub put_footer { - my $self = shift; - $self->process("global/footer.html.tmpl") - || ThrowTemplateError($self->error()); -} - sub get_format { my $self = shift; my ($template, $format, $ctype) = @_; @@ -924,10 +908,6 @@ Bugzilla::Template - Wrapper around the Template Toolkit C