From 401144e72a1e128f01fea7a421948dadc8e278d8 Mon Sep 17 00:00:00 2001 From: "gerv%gerv.net" Date: Thu, 22 Nov 2001 06:12:36 +0000 Subject: [PATCH] Bug 104261 - incorrect template paths. r=myk, ddk. git-svn-id: svn://10.0.0.236/trunk@108799 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/webtools/bugzilla/Attachment.pm | 2 +- mozilla/webtools/bugzilla/Bugzilla/Attachment.pm | 2 +- mozilla/webtools/bugzilla/attachment.cgi | 2 +- mozilla/webtools/bugzilla/editattachstatuses.cgi | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/mozilla/webtools/bugzilla/Attachment.pm b/mozilla/webtools/bugzilla/Attachment.pm index 9f46fd0839f..1ba194d77be 100644 --- a/mozilla/webtools/bugzilla/Attachment.pm +++ b/mozilla/webtools/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/mozilla/webtools/bugzilla/Bugzilla/Attachment.pm b/mozilla/webtools/bugzilla/Bugzilla/Attachment.pm index 9f46fd0839f..1ba194d77be 100644 --- a/mozilla/webtools/bugzilla/Bugzilla/Attachment.pm +++ b/mozilla/webtools/bugzilla/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/mozilla/webtools/bugzilla/attachment.cgi b/mozilla/webtools/bugzilla/attachment.cgi index d908a5ebd29..e5c3f52fe13 100755 --- a/mozilla/webtools/bugzilla/attachment.cgi +++ b/mozilla/webtools/bugzilla/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/mozilla/webtools/bugzilla/editattachstatuses.cgi b/mozilla/webtools/bugzilla/editattachstatuses.cgi index 9feb9a765d6..6596a79c991 100755 --- a/mozilla/webtools/bugzilla/editattachstatuses.cgi +++ b/mozilla/webtools/bugzilla/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 }