From: gerv%gerv.net <> Date: Thu, 22 Nov 2001 14:12:36 +0000 (+0000) Subject: Bug 104261 - incorrect template paths. r=myk, ddk. X-Git-Tag: bugzilla-2.16rc1~299 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=07f94a610c1ef871d5c636a6f9f030e084cdc7aa;p=thirdparty%2Fbugzilla.git Bug 104261 - incorrect template paths. r=myk, ddk. --- diff --git a/Attachment.pm b/Attachment.pm index 9f46fd0839..1ba194d77b 100644 --- a/Attachment.pm +++ b/Attachment.pm @@ -42,7 +42,7 @@ use Template; my $template = Template->new( { # Colon-separated list of directories containing templates. - INCLUDE_PATH => 'template/default' , + INCLUDE_PATH => 'template/custom:template/default' , # Allow templates to be specified with relative paths. RELATIVE => 1 } diff --git a/Bugzilla/Attachment.pm b/Bugzilla/Attachment.pm index 9f46fd0839..1ba194d77b 100644 --- a/Bugzilla/Attachment.pm +++ b/Bugzilla/Attachment.pm @@ -42,7 +42,7 @@ use Template; my $template = Template->new( { # Colon-separated list of directories containing templates. - INCLUDE_PATH => 'template/default' , + INCLUDE_PATH => 'template/custom:template/default' , # Allow templates to be specified with relative paths. RELATIVE => 1 } diff --git a/attachment.cgi b/attachment.cgi index d908a5ebd2..e5c3f52fe1 100755 --- a/attachment.cgi +++ b/attachment.cgi @@ -45,7 +45,7 @@ use Template; my $template = Template->new( { # Colon-separated list of directories containing templates. - INCLUDE_PATH => "template/default" , + INCLUDE_PATH => "template/custom:template/default" , # Allow templates to be specified with relative paths. RELATIVE => 1 } diff --git a/editattachstatuses.cgi b/editattachstatuses.cgi index 9feb9a765d..6596a79c99 100755 --- a/editattachstatuses.cgi +++ b/editattachstatuses.cgi @@ -45,7 +45,7 @@ use Template; my $template = Template->new( { # Colon-separated list of directories containing templates. - INCLUDE_PATH => "template/default" , + INCLUDE_PATH => "template/custom:template/default" , # Allow templates to be specified with relative paths. RELATIVE => 1 }