diff options
author | justdave%syndicomm.com <> | 2002-04-29 03:43:14 +0200 |
---|---|---|
committer | justdave%syndicomm.com <> | 2002-04-29 03:43:14 +0200 |
commit | 2ab1c5c3268f3bfdc380961f50f51f52634516a2 (patch) | |
tree | fed69873887333dfe69faedd80083f6add74d150 | |
parent | 2fbdc1d838a990be1faba320618eae6fadae878a (diff) | |
download | bugzilla-2ab1c5c3268f3bfdc380961f50f51f52634516a2.tar.gz bugzilla-2ab1c5c3268f3bfdc380961f50f51f52634516a2.tar.xz |
Fix for bug 140633: Template Toolkit bug causes directory "datatemplate" to be created in the Bugzilla root directory instead
of creating "template" within the "data" directory. Adding a trailing slash to the compile directory name to work around it.
2xr= bbaetz
-rw-r--r-- | globals.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/globals.pl b/globals.pl index 2fd047dd4..2dd4dbc98 100644 --- a/globals.pl +++ b/globals.pl @@ -1544,7 +1544,7 @@ $::template ||= Template->new( PRE_CHOMP => 1 , TRIM => 1 , - COMPILE_DIR => 'data', + COMPILE_DIR => 'data/', # Functions for processing text within templates in various ways. FILTERS => |