summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Quantum/Template.pm
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2018-05-21 17:38:41 +0200
committerDylan William Hardison <dylan@hardison.net>2018-06-28 22:41:56 +0200
commit3517d8a6687cd37cb8c9009a78f16071d652254a (patch)
tree135535be087ee773e710e0c6d762283a3dfbb902 /Bugzilla/Quantum/Template.pm
parent873074873fe5e27e853e5ce3d83b078280a29c2a (diff)
downloadbugzilla-3517d8a6687cd37cb8c9009a78f16071d652254a.tar.gz
bugzilla-3517d8a6687cd37cb8c9009a78f16071d652254a.tar.xz
almost working
Diffstat (limited to 'Bugzilla/Quantum/Template.pm')
-rw-r--r--Bugzilla/Quantum/Template.pm3
1 files changed, 1 insertions, 2 deletions
diff --git a/Bugzilla/Quantum/Template.pm b/Bugzilla/Quantum/Template.pm
index ebae0cf9f..2442f1134 100644
--- a/Bugzilla/Quantum/Template.pm
+++ b/Bugzilla/Quantum/Template.pm
@@ -24,8 +24,7 @@ sub process {
my ($self, $file, $vars, $output) = @_;
if (@_ < 4) {
- my $stash = $self->controller->stash;
- $stash->{$_} = $vars->{$_} for keys %$vars;
+ $self->controller->stash->{vars} = $vars;
$self->controller->render(template => $file, handler => 'bugzilla');
return 1;
}