summaryrefslogtreecommitdiffstats
path: root/template/en/default/bug/show.html.tmpl
diff options
context:
space:
mode:
authorjustdave%bugzilla.org <>2004-10-25 13:28:31 +0200
committerjustdave%bugzilla.org <>2004-10-25 13:28:31 +0200
commite63b2d6e7555d960914c0c21e2ebe9260001ecc8 (patch)
tree52a0e965cb057430b388e7fd4f40a56d81c7e518 /template/en/default/bug/show.html.tmpl
parent6045801e1251ffd78153e0bf4e3f08995ee76c68 (diff)
downloadbugzilla-e63b2d6e7555d960914c0c21e2ebe9260001ecc8.tar.gz
bugzilla-e63b2d6e7555d960914c0c21e2ebe9260001ecc8.tar.xz
Bug 251596: show.html.tmpl wasn't using the customized body attribute
Patch by Marc Schumann <wurblzap@gmail.com> r=kiko, a=myk
Diffstat (limited to 'template/en/default/bug/show.html.tmpl')
-rw-r--r--template/en/default/bug/show.html.tmpl11
1 files changed, 5 insertions, 6 deletions
diff --git a/template/en/default/bug/show.html.tmpl b/template/en/default/bug/show.html.tmpl
index f98e05f0c..8db59a980 100644
--- a/template/en/default/bug/show.html.tmpl
+++ b/template/en/default/bug/show.html.tmpl
@@ -28,17 +28,16 @@
[% filtered_desc = bug.short_desc FILTER html %]
[% filtered_timestamp = bug.delta_ts FILTER time %]
-[% 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
title = "$terms.Bug $bug.bug_id - $bug.short_desc"
h1 = "$terms.Bugzilla $terms.Bug $bug.bug_id"
h2 = filtered_desc
h3 = "Last modified: $filtered_timestamp"
- bodyattrs = bodyattrs
+ bodyclasses = ['bz_bug',
+ "bz_status_$bug.bug_status",
+ "bz_component_$bug.component",
+ "bz_bug_$bug.bug_id"
+ ]
%]
[% PROCESS bug/navigate.html.tmpl %]