From 2ab1c5c3268f3bfdc380961f50f51f52634516a2 Mon Sep 17 00:00:00 2001 From: "justdave%syndicomm.com" <> Date: Mon, 29 Apr 2002 01:43:14 +0000 Subject: 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 --- globals.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 => -- cgit v1.2.3-24-g4f1b