From: justdave%syndicomm.com <> Date: Tue, 27 Apr 2004 03:39:42 +0000 (+0000) Subject: Bug 241516: remove possible namespace conflicts in the additional CSS classes for... X-Git-Tag: bugzilla-2.18rc1~80 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ee5f2884e64cdad7f42d473db3df6ab41aaef2d9;p=thirdparty%2Fbugzilla.git Bug 241516: remove possible namespace conflicts in the additional CSS classes for bugid, component, and status on show_bug r=myk, a=justdave --- diff --git a/template/en/default/bug/show.html.tmpl b/template/en/default/bug/show.html.tmpl index 3ef31af3fe..2334b2dd9c 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