summaryrefslogtreecommitdiffstats
path: root/template/en/default/bug/show.html.tmpl
diff options
context:
space:
mode:
authorjustdave%syndicomm.com <>2004-04-27 05:39:42 +0200
committerjustdave%syndicomm.com <>2004-04-27 05:39:42 +0200
commitee5f2884e64cdad7f42d473db3df6ab41aaef2d9 (patch)
tree803cb08e9d88048aa634700a90b92b7013a32b62 /template/en/default/bug/show.html.tmpl
parent157983e86e5698ce042322da147b3b3b311cf8a1 (diff)
downloadbugzilla-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/default/bug/show.html.tmpl')
-rw-r--r--template/en/default/bug/show.html.tmpl6
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