diff options
-rw-r--r-- | Attachment.pm | 2 | ||||
-rw-r--r-- | Bugzilla/Attachment.pm | 2 | ||||
-rwxr-xr-x | attachment.cgi | 2 | ||||
-rwxr-xr-x | editattachstatuses.cgi | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/Attachment.pm b/Attachment.pm index 9f46fd083..1ba194d77 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 9f46fd083..1ba194d77 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 d908a5ebd..e5c3f52fe 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 9feb9a765..6596a79c9 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 } |