diff options
author | Alex Schuilenburg <alex@schuilenburg.org> | 2015-11-06 18:07:01 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2015-11-06 18:07:01 +0100 |
commit | 5fc8da0fad88b684c2ebbca05fc552abad739686 (patch) | |
tree | e00ae019eeefc1a2f45e2e6089cc53215e852489 /template | |
parent | Bug 714724: Correctly encode emails as quoted-printable (diff) | |
download | bugzilla-5fc8da0fad88b684c2ebbca05fc552abad739686.tar.gz bugzilla-5fc8da0fad88b684c2ebbca05fc552abad739686.tar.bz2 bugzilla-5fc8da0fad88b684c2ebbca05fc552abad739686.zip |
Bug 1222416: The group list must use 'class' instead of 'align'
r/a=justdave
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/admin/groups/list.html.tmpl | 4 | ||||
-rw-r--r-- | template/en/default/admin/table.html.tmpl | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/template/en/default/admin/groups/list.html.tmpl b/template/en/default/admin/groups/list.html.tmpl index 673c053cb..796872e1d 100644 --- a/template/en/default/admin/groups/list.html.tmpl +++ b/template/en/default/admin/groups/list.html.tmpl @@ -40,11 +40,11 @@ } {name => 'is_active_bug_group' heading => "Use For $terms.Bugs" - align => 'center' + class => 'center' } {name => 'type' heading => 'Type' - align => 'center' + class => 'center' } {name => 'action' heading => 'Action' diff --git a/template/en/default/admin/table.html.tmpl b/template/en/default/admin/table.html.tmpl index 993181c7f..2c8eb5fe0 100644 --- a/template/en/default/admin/table.html.tmpl +++ b/template/en/default/admin/table.html.tmpl @@ -69,7 +69,7 @@ <tr class="column_header"> [% FOREACH c = columns %] [%# Default to align left for headers %] - <th class="[% (c.align || 'left') FILTER css_class_quote %]"> + <th class="[% (c.class || 'left') FILTER css_class_quote %]"> [% c.heading FILTER html %] </th> [% END %] |