diff options
author | Christopher Trom <chtrom@gmail.com> | 2012-12-02 19:56:17 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2012-12-02 19:56:17 +0100 |
commit | d8835285194163b3f2c99997668705daa40d2dd4 (patch) | |
tree | 059c1e4037c9b16e0337edb5323311295a3043ad /template/en/default/admin/keywords | |
parent | b3821a27575b9df948e7387b9499a020e4a2dd34 (diff) | |
download | bugzilla-d8835285194163b3f2c99997668705daa40d2dd4.tar.gz bugzilla-d8835285194163b3f2c99997668705daa40d2dd4.tar.xz |
Bug 547311: Remove the "align" attribute from <th>
r/a=LpSolit
Diffstat (limited to 'template/en/default/admin/keywords')
-rw-r--r-- | template/en/default/admin/keywords/create.html.tmpl | 4 | ||||
-rw-r--r-- | template/en/default/admin/keywords/edit.html.tmpl | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/template/en/default/admin/keywords/create.html.tmpl b/template/en/default/admin/keywords/create.html.tmpl index e29db400c..10de960cb 100644 --- a/template/en/default/admin/keywords/create.html.tmpl +++ b/template/en/default/admin/keywords/create.html.tmpl @@ -18,11 +18,11 @@ <form method="post" action="editkeywords.cgi"> <table border="0" cellpadding="4" cellspacing="0"> <tr> - <th align="right">Name:</th> + <th>Name:</th> <td><input size="64" maxlength="64" name="name" value=""></td> </tr> <tr> - <th align="right">Description:</th> + <th>Description:</th> <td> [% INCLUDE global/textarea.html.tmpl name = 'description' diff --git a/template/en/default/admin/keywords/edit.html.tmpl b/template/en/default/admin/keywords/edit.html.tmpl index 07603e1de..f8b74ab21 100644 --- a/template/en/default/admin/keywords/edit.html.tmpl +++ b/template/en/default/admin/keywords/edit.html.tmpl @@ -17,12 +17,12 @@ <form method="post" action="editkeywords.cgi"> <table border="0" cellpadding="4" cellspacing="0"> <tr> - <th align="right">Name:</th> + <th>Name:</th> <td><input size="64" maxlength="64" name="name" value="[% keyword.name FILTER html %]"></td> </tr> <tr> - <th align="right">Description:</th> + <th>Description:</th> <td> [% INCLUDE global/textarea.html.tmpl name = 'description' @@ -34,7 +34,7 @@ </td> </tr> <tr> - <th align="right">[% terms.Bugs %]:</th> + <th>[% terms.Bugs %]:</th> <td> [% IF keyword.bug_count > 0 %] <a href="buglist.cgi?keywords=[% keyword.name FILTER uri %]"> |