summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Template/Context.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla/Template/Context.pm')
-rw-r--r--Bugzilla/Template/Context.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/Bugzilla/Template/Context.pm b/Bugzilla/Template/Context.pm
index ce1718e0f..1e75d1d6f 100644
--- a/Bugzilla/Template/Context.pm
+++ b/Bugzilla/Template/Context.pm
@@ -88,7 +88,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.