summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Quantum/Template.pm
diff options
context:
space:
mode:
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;
}