From: justdave%syndicomm.com <> Date: Mon, 29 Apr 2002 01:43:14 +0000 (+0000) Subject: Fix for bug 140633: Template Toolkit bug causes directory "datatemplate" to be create... X-Git-Tag: bugzilla-2.16rc1~57 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2ab1c5c3268f3bfdc380961f50f51f52634516a2;p=thirdparty%2Fbugzilla.git 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 --- diff --git a/globals.pl b/globals.pl index 2fd047dd47..2dd4dbc988 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 =>