Priority: Normal
Current State: Closed
Released In: n/a
Target Release: n/a
Applies To: Engine
Component: FORMFIELD
Branches: trunk
This code SMELL is spot on:
# SMELL: this local creation of a cache looks very suspicious. Suspect
# this may have been a one-off optimisation. It may be SNAFU with
# CGI accelerators, as there doesn't seem to be any way to expire the
# cache.
our %ffCache;
The
ffCache
became a global variable during
http://trac.foswiki.org/changeset/15063. Before, it was a private variable of the Foswiki::Render class, properly cleaned up in a finish handler.
So the current stable branch is not affected by this bug.
--
MichaelDaum - 04 Jul 2012