From b3d21fc65e4e80363071c4ae0e3029338056561f Mon Sep 17 00:00:00 2001 From: Byron Jones Date: Tue, 19 Nov 2013 22:11:30 +0800 Subject: Bug 939844: Don't cache template filters when arguments are supplied --- Bugzilla/Template/Context.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Bugzilla/Template') diff --git a/Bugzilla/Template/Context.pm b/Bugzilla/Template/Context.pm index db1a3cf90..b3e3446f6 100644 --- a/Bugzilla/Template/Context.pm +++ b/Bugzilla/Template/Context.pm @@ -99,7 +99,8 @@ sub filter { my ($self, $name, $args) = @_; # If we pass an alias for the filter name, the filter code is cached # instead of looking for it at each call. - $self->SUPER::filter($name, $args, $name); + # If the filter has arguments, then we can't cache it. + $self->SUPER::filter($name, $args, $args ? undef : $name); } # We need a DESTROY sub for the same reason that Bugzilla::CGI does. -- cgit v1.2.3-24-g4f1b