1
# -*- Mode: perl; indent-tabs-mode: nil -*-
3
# The contents of this file are subject to the Mozilla Public
4
# License Version 1.1 (the "License"); you may not use this file
5
# except in compliance with the License. You may obtain a copy of
6
# the License at http://www.mozilla.org/MPL/
8
# Software distributed under the License is distributed on an "AS
9
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
10
# implied. See the License for the specific language governing
11
# rights and limitations under the License.
13
# The Original Code is the Bugzilla Example Plugin.
15
# The Initial Developer of the Original Code is Matt Rogers.
16
# Portions created by the Initial Developer are Copyright (C) 2009
17
# the Initial Developer. All Rights Reserved.
20
# Matt Rogers <mattr@kde.org>
26
my %args = %{ Bugzilla->hook_args };
27
my ($vars, $file, $template) = $args{qw(vars file template)};
29
$vars->{'example'} = 1;
31
if ($file =~ m{^bug/show}) {
32
$vars->{'showing_a_bug'} = 1;