diff options
author | gerv%gerv.net <> | 2002-04-24 08:27:23 +0200 |
---|---|---|
committer | gerv%gerv.net <> | 2002-04-24 08:27:23 +0200 |
commit | c29a6dcb565731ef6757a625b7374e7ff46d417c (patch) | |
tree | 0248868bb75ffc12c4074d79d3e97390fd9da5dd /template/en/default/global | |
parent | 999195822166fd2bd5558a2c1f60460141aa7a2c (diff) | |
download | bugzilla-c29a6dcb565731ef6757a625b7374e7ff46d417c.tar.gz bugzilla-c29a6dcb565731ef6757a625b7374e7ff46d417c.tar.xz |
Bug 138582 - convert all INCLUDEs to PROCESS. Patch by gerv, r=bbaetz, afranke.
Diffstat (limited to 'template/en/default/global')
-rw-r--r-- | template/en/default/global/choose-product.html.tmpl | 4 | ||||
-rw-r--r-- | template/en/default/global/code-error.html.tmpl | 4 | ||||
-rw-r--r-- | template/en/default/global/user-error.html.tmpl | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/template/en/default/global/choose-product.html.tmpl b/template/en/default/global/choose-product.html.tmpl index 03dd356dd..1d68f7fe7 100644 --- a/template/en/default/global/choose-product.html.tmpl +++ b/template/en/default/global/choose-product.html.tmpl @@ -20,7 +20,7 @@ #%] [% DEFAULT title = "Choose a Product" %] -[% INCLUDE global/header.html.tmpl %] +[% PROCESS global/header.html.tmpl %] <table> @@ -39,4 +39,4 @@ </table> -[% INCLUDE global/footer.html.tmpl %] +[% PROCESS global/footer.html.tmpl %] diff --git a/template/en/default/global/code-error.html.tmpl b/template/en/default/global/code-error.html.tmpl index f9261b20f..b0f21f7ff 100644 --- a/template/en/default/global/code-error.html.tmpl +++ b/template/en/default/global/code-error.html.tmpl @@ -20,7 +20,7 @@ #%] [% UNLESS header_done %] - [% INCLUDE global/header.html.tmpl %] + [% PROCESS global/header.html.tmpl %] [% END %] <tt> @@ -54,4 +54,4 @@ Variables: </pre> [% END %] -[% INCLUDE global/footer.html.tmpl %] +[% PROCESS global/footer.html.tmpl %] diff --git a/template/en/default/global/user-error.html.tmpl b/template/en/default/global/user-error.html.tmpl index 3b0819f53..d2e527dda 100644 --- a/template/en/default/global/user-error.html.tmpl +++ b/template/en/default/global/user-error.html.tmpl @@ -20,7 +20,7 @@ #%] [% UNLESS header_done %] - [% INCLUDE global/header.html.tmpl %] + [% PROCESS global/header.html.tmpl %] [% END %] <table cellpadding="20"> @@ -37,4 +37,4 @@ Please press <b>Back</b> and try again. </p> -[% INCLUDE global/footer.html.tmpl %] +[% PROCESS global/footer.html.tmpl %] |