From 9b22dcde525cb7e0b0b88b80d627e7e1d3dd5e6c Mon Sep 17 00:00:00 2001 From: "bbaetz%student.usyd.edu.au" <> Date: Tue, 13 Aug 2002 13:54:35 +0000 Subject: Bug 160710 - Taint checking causes problem with rename function r=joel, preed --- template/en/default/account/prefs/prefs.html.tmpl | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'template/en/default/account/prefs/prefs.html.tmpl') diff --git a/template/en/default/account/prefs/prefs.html.tmpl b/template/en/default/account/prefs/prefs.html.tmpl index d455b5b66..327218e17 100644 --- a/template/en/default/account/prefs/prefs.html.tmpl +++ b/template/en/default/account/prefs/prefs.html.tmpl @@ -100,7 +100,16 @@
- [% PROCESS "account/prefs/${current_tab.name}.html.tmpl" IF current_tab.name.defined %] + [%# See bug 160710 for why this is done this way %] + [% IF current_tab.name == "account" %] + [% PROCESS "account/prefs/account.html.tmpl" %] + [% ELSIF current_tab.name == "email" %] + [% PROCESS "account/prefs/email.html.tmpl" %] + [% ELSIF current_tab.name == "footer" %] + [% PROCESS "account/prefs/footer.html.tmpl" %] + [% ELSIF current_tab.name == "permissions" %] + [% PROCESS "account/prefs/permissions.html.tmpl" %] + [% END %] [% IF current_tab.saveable %] -- cgit v1.2.3-24-g4f1b