diff options
author | myk%mozilla.org <> | 2002-05-22 02:53:03 +0200 |
---|---|---|
committer | myk%mozilla.org <> | 2002-05-22 02:53:03 +0200 |
commit | f3b6e880a28c2f7fbe62702f5557f8b32fc10ca0 (patch) | |
tree | f9bfe5602af8c65ca6045dd499a48a474e8d9804 /template/en/default/account | |
parent | 58d6d1b7eaf00f9548a5d4bd188dfe65b32cb982 (diff) | |
download | bugzilla-f3b6e880a28c2f7fbe62702f5557f8b32fc10ca0.tar.gz bugzilla-f3b6e880a28c2f7fbe62702f5557f8b32fc10ca0.tar.xz |
Fix for bug 47251: Make HTML output HTML 4.01 Transitional compliant.
Patch by mental <xor@ivwnet.com>.
r=justdave,myk
Diffstat (limited to 'template/en/default/account')
8 files changed, 22 insertions, 22 deletions
diff --git a/template/en/default/account/email/confirm.html.tmpl b/template/en/default/account/email/confirm.html.tmpl index ebba5c76f..140c54e0d 100644 --- a/template/en/default/account/email/confirm.html.tmpl +++ b/template/en/default/account/email/confirm.html.tmpl @@ -30,7 +30,7 @@ </p> <form method="post" action="token.cgi"> - <input type="hidden" name="t" value=[% token FILTER html %]> + <input type="hidden" name="t" value="[% token FILTER html %]"> <input type="hidden" name="a" value="chgem"> <table> <tr> diff --git a/template/en/default/account/exists.html.tmpl b/template/en/default/account/exists.html.tmpl index 5281b20cf..3516dc7cc 100644 --- a/template/en/default/account/exists.html.tmpl +++ b/template/en/default/account/exists.html.tmpl @@ -28,11 +28,11 @@ %] <form method="get" action="token.cgi"> - <input type="hidden" name="a" value="reqpw" /> - <input type="hidden" name="loginname" value="[% login FILTER html %]" /> + <input type="hidden" name="a" value="reqpw"> + <input type="hidden" name="loginname" value="[% login FILTER html %]"> A Bugzilla account for <tt>[% login FILTER html %]</tt> already exists. If you are the account holder and have forgotten your password, - <input type="submit" value="submit a request to change it" />. + <input type="submit" value="submit a request to change it">. </form> [% 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 eb1abe746..eaabf7dc4 100644 --- a/template/en/default/account/password/set-forgotten-password.html.tmpl +++ b/template/en/default/account/password/set-forgotten-password.html.tmpl @@ -26,27 +26,27 @@ </p> <form method="post" action="token.cgi"> - <input type="hidden" name="t" value="[% token FILTER html %]" /> - <input type="hidden" name="a" value="chgpw" /> + <input type="hidden" name="t" value="[% token FILTER html %]"> + <input type="hidden" name="a" value="chgpw"> <table> <tr> <th align="right">New Password:</th> <td> - <input type="password" name="password" size="16" maxlength="16" /> + <input type="password" name="password" size="16" maxlength="16"> </td> </tr> <tr> <th align="right">New Password Again:</th> <td> - <input type="password" name="matchpassword" size="16" maxlength="16" /> + <input type="password" name="matchpassword" size="16" maxlength="16"> </td> </tr> <tr> <th align="right"> </th> <td> - <input type="submit" value="Submit" /> + <input type="submit" value="Submit"> </td> </tr> </table> diff --git a/template/en/default/account/prefs/account.html.tmpl b/template/en/default/account/prefs/account.html.tmpl index e1675c7fb..798bb8e40 100644 --- a/template/en/default/account/prefs/account.html.tmpl +++ b/template/en/default/account/prefs/account.html.tmpl @@ -36,8 +36,8 @@ <th align="right">Password:</th> <td> <input type="hidden" name="Bugzilla_login" - value="[% login FILTER html %]" /> - <input type="password" name="Bugzilla_password" /> + value="[% login FILTER html %]"> + <input type="password" name="Bugzilla_password"> </td> </tr> <tr> @@ -47,21 +47,21 @@ <tr> <th align="right">New password:</th> <td> - <input type="password" name="new_password1" /> + <input type="password" name="new_password1"> </td> </tr> <tr> <th align="right">Re-enter new password:</th> <td> - <input type="password" name="new_password2" /> + <input type="password" name="new_password2"> </td> </tr> <tr> <th align="right">Your real name (optional, but encouraged):</th> <td> - <input size="35" name="realname" value="[% realname FILTER html %]" /> + <input size="35" name="realname" value="[% realname FILTER html %]"> </td> </tr> diff --git a/template/en/default/account/prefs/email.html.tmpl b/template/en/default/account/prefs/email.html.tmpl index f7d529c7c..da57a8713 100644 --- a/template/en/default/account/prefs/email.html.tmpl +++ b/template/en/default/account/prefs/email.html.tmpl @@ -35,7 +35,7 @@ [% IF Param('supportwatchers') %] <tr> <td colspan="4"> - <hr /> + <hr> </td> </tr> @@ -52,7 +52,7 @@ <tr> <th align="right">Users to watch:</th> <td> - <input size="35" name="watchedusers" value="[% watchedusers %]" /> + <input size="35" name="watchedusers" value="[% watchedusers %]"> </td> </tr> [% END %] @@ -68,7 +68,7 @@ </tr> </table> -<hr /> +<hr> <table> <tr> @@ -88,7 +88,7 @@ </tr> </table> -<hr /> +<hr> <b>Field/recipient specific options:</b> <br> <br> diff --git a/template/en/default/account/prefs/footer.html.tmpl b/template/en/default/account/prefs/footer.html.tmpl index ea5753f0e..77ebd1e3a 100644 --- a/template/en/default/account/prefs/footer.html.tmpl +++ b/template/en/default/account/prefs/footer.html.tmpl @@ -39,7 +39,7 @@ </td> </tr> - <input type="hidden" name="numqueries" value="[% queries.size %]" /> + <input type="hidden" name="numqueries" value="[% queries.size %]"> [% IF queries.size %] [% FOREACH query = queries %] <tr> @@ -56,7 +56,7 @@ </tr> <input type="hidden" name="name-[% loop.index %]" - value="[% query.name FILTER html %]" /> + value="[% query.name FILTER html %]"> [% END %] [% ELSE %] diff --git a/template/en/default/account/prefs/permissions.html.tmpl b/template/en/default/account/prefs/permissions.html.tmpl index 7ab7f1df9..15bca6deb 100644 --- a/template/en/default/account/prefs/permissions.html.tmpl +++ b/template/en/default/account/prefs/permissions.html.tmpl @@ -43,7 +43,7 @@ [% IF set_bits.size %] And you can turn on or off the following bits for - <a HREF="editusers.cgi">other users</a>: + <a href="editusers.cgi">other users</a>: <p> <ul> [% FOREACH bit_description = set_bits %] diff --git a/template/en/default/account/prefs/prefs.html.tmpl b/template/en/default/account/prefs/prefs.html.tmpl index 93f004dea..2a232f875 100644 --- a/template/en/default/account/prefs/prefs.html.tmpl +++ b/template/en/default/account/prefs/prefs.html.tmpl @@ -71,7 +71,7 @@ </td> [% ELSE %] <td align="center" bgcolor="#BBBBEE" class="unselected_tab"> - <a HREF="userprefs.cgi?tab=[% tab.name %]">[% tab.description %]</a> + <a href="userprefs.cgi?tab=[% tab.name %]">[% tab.description %]</a> </td> [% END %] [% END %] |