diff options
author | justdave%syndicomm.com <> | 2004-04-27 05:39:42 +0200 |
---|---|---|
committer | justdave%syndicomm.com <> | 2004-04-27 05:39:42 +0200 |
commit | ee5f2884e64cdad7f42d473db3df6ab41aaef2d9 (patch) | |
tree | 803cb08e9d88048aa634700a90b92b7013a32b62 /template/en | |
parent | 157983e86e5698ce042322da147b3b3b311cf8a1 (diff) | |
download | bugzilla-ee5f2884e64cdad7f42d473db3df6ab41aaef2d9.tar.gz bugzilla-ee5f2884e64cdad7f42d473db3df6ab41aaef2d9.tar.xz |
Bug 241516: remove possible namespace conflicts in the additional CSS classes for bugid, component, and status on show_bug
r=myk, a=justdave
Diffstat (limited to 'template/en')
-rw-r--r-- | template/en/default/bug/show.html.tmpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/template/en/default/bug/show.html.tmpl b/template/en/default/bug/show.html.tmpl index 3ef31af3f..2334b2dd9 100644 --- a/template/en/default/bug/show.html.tmpl +++ b/template/en/default/bug/show.html.tmpl @@ -28,9 +28,9 @@ [% filtered_desc = bug.short_desc FILTER html %] [% filtered_timestamp = bug.delta_ts FILTER time %] -[% bodyattrs = BLOCK %]class='bz_bug [% bug.bug_status - FILTER css_class_quote %] [%+ bug.component - FILTER css_class_quote %] [%+ bug.bug_id +[% bodyattrs = BLOCK %]class='bz_bug bz_status_[% bug.bug_status + FILTER css_class_quote %] bz_component_[% bug.component + FILTER css_class_quote %] bz_bug_[% bug.bug_id FILTER css_class_quote %]' [% END %] [% PROCESS global/header.html.tmpl |