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/account | |
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/account')
6 files changed, 13 insertions, 13 deletions
diff --git a/template/en/default/account/create.html.tmpl b/template/en/default/account/create.html.tmpl index fd1a5edfe..da8979c91 100644 --- a/template/en/default/account/create.html.tmpl +++ b/template/en/default/account/create.html.tmpl @@ -19,7 +19,7 @@ # Contributor(s): Gervase Markham <gerv@gerv.net> #%] -[% INCLUDE global/header.html.tmpl +[% PROCESS global/header.html.tmpl title = "Create a new Bugzilla account" %] @@ -55,4 +55,4 @@ <input type="submit" value="Create Account"> </form> -[% INCLUDE global/footer.html.tmpl %] +[% PROCESS global/footer.html.tmpl %] diff --git a/template/en/default/account/created.html.tmpl b/template/en/default/account/created.html.tmpl index 2a59eb60a..314b71e47 100644 --- a/template/en/default/account/created.html.tmpl +++ b/template/en/default/account/created.html.tmpl @@ -19,7 +19,7 @@ # Contributor(s): Gervase Markham <gerv@gerv.net> #%] -[% INCLUDE global/header.html.tmpl +[% PROCESS global/header.html.tmpl title = "Account Created" %] @@ -35,4 +35,4 @@ <a href="query.cgi?GoAheadAndLogIn=1">log in here</a>. </p> -[% INCLUDE global/footer.html.tmpl %] +[% PROCESS global/footer.html.tmpl %] diff --git a/template/en/default/account/email/confirm.html.tmpl b/template/en/default/account/email/confirm.html.tmpl index 0773df6b1..5fd1570e6 100644 --- a/template/en/default/account/email/confirm.html.tmpl +++ b/template/en/default/account/email/confirm.html.tmpl @@ -19,7 +19,7 @@ # Contributor(s): John Vandenberg <zeroj@null.net> #%] -[% INCLUDE global/header.html.tmpl %] +[% PROCESS global/header.html.tmpl %] <p> @@ -41,4 +41,4 @@ </table> </form> -[% INCLUDE global/footer.html.tmpl %] +[% PROCESS global/footer.html.tmpl %] diff --git a/template/en/default/account/exists.html.tmpl b/template/en/default/account/exists.html.tmpl index 2553763f2..912b117f9 100644 --- a/template/en/default/account/exists.html.tmpl +++ b/template/en/default/account/exists.html.tmpl @@ -19,7 +19,7 @@ # Contributor(s): Gervase Markham <gerv@gerv.net> #%] -[% INCLUDE global/header.html.tmpl +[% PROCESS global/header.html.tmpl title = "Account Exists" %] @@ -31,4 +31,4 @@ <input type="submit" value="submit a request to change it" />. </form> -[% INCLUDE global/footer.html.tmpl %] +[% PROCESS global/footer.html.tmpl %] diff --git a/template/en/default/account/password/set-forgotten-password.html.tmpl b/template/en/default/account/password/set-forgotten-password.html.tmpl index 675db62d1..eb1abe746 100644 --- a/template/en/default/account/password/set-forgotten-password.html.tmpl +++ b/template/en/default/account/password/set-forgotten-password.html.tmpl @@ -19,7 +19,7 @@ # Contributor(s): Gervase Markham <gerv@gerv.net> #%] -[% INCLUDE global/header.html.tmpl %] +[% PROCESS global/header.html.tmpl %] <p> To change your password, enter a new password twice: @@ -52,4 +52,4 @@ </table> </form> -[% INCLUDE global/footer.html.tmpl %] +[% PROCESS global/footer.html.tmpl %] diff --git a/template/en/default/account/prefs/prefs.html.tmpl b/template/en/default/account/prefs/prefs.html.tmpl index 9c103661b..17ce7b5d6 100644 --- a/template/en/default/account/prefs/prefs.html.tmpl +++ b/template/en/default/account/prefs/prefs.html.tmpl @@ -36,7 +36,7 @@ #%] [% filtered_login = login FILTER html %] -[% INCLUDE global/header.html.tmpl +[% PROCESS global/header.html.tmpl title = "User Preferences" h2 = filtered_login style = "td.selected_tab { @@ -90,7 +90,7 @@ <form method="post"> <input type="hidden" name="tab" value="[% current_tab.name %]"> - [% INCLUDE "account/prefs/${current_tab.name}.html.tmpl" IF current_tab.name.defined %] + [% PROCESS "account/prefs/${current_tab.name}.html.tmpl" IF current_tab.name.defined %] [% IF current_tab.saveable %] <input type="hidden" name="dosave" value="1"> @@ -107,7 +107,7 @@ </form> -[% INCLUDE global/footer.html.tmpl %] +[% PROCESS global/footer.html.tmpl %] |