Commit 3d873277 authored by Frédéric Buclin's avatar Frédéric Buclin

Bug 284650: Beginning a chart name with an "_" (underscore) causes errors

r/a=mkanat
parent 51bdc50c
...@@ -369,6 +369,9 @@ $Template::Directive::WHILE_MAX = 1000000; ...@@ -369,6 +369,9 @@ $Template::Directive::WHILE_MAX = 1000000;
# to template variables. # to template variables.
use Template::Stash; use Template::Stash;
# Allow keys to start with an underscore or a dot.
$Template::Stash::PRIVATE = undef;
# Add "contains***" methods to list variables that search for one or more # Add "contains***" methods to list variables that search for one or more
# items in a list and return boolean values representing whether or not # items in a list and return boolean values representing whether or not
# one/all/any item(s) were found. # one/all/any item(s) were found.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment