diff options
author | justdave%bugzilla.org <> | 2004-10-25 13:35:30 +0200 |
---|---|---|
committer | justdave%bugzilla.org <> | 2004-10-25 13:35:30 +0200 |
commit | 77c85a80c678a97d21792dc0d57433771fece439 (patch) | |
tree | e843710287030c6ab5dbfb9de9fbdd3a38f3df54 /template/en/default/bug | |
parent | e63b2d6e7555d960914c0c21e2ebe9260001ecc8 (diff) | |
download | bugzilla-77c85a80c678a97d21792dc0d57433771fece439.tar.gz bugzilla-77c85a80c678a97d21792dc0d57433771fece439.tar.xz |
Backing out patch for bug 251596: found a problem with it after I committed. See the bug.
Diffstat (limited to 'template/en/default/bug')
-rw-r--r-- | template/en/default/bug/show.html.tmpl | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/template/en/default/bug/show.html.tmpl b/template/en/default/bug/show.html.tmpl index 8db59a980..f98e05f0c 100644 --- a/template/en/default/bug/show.html.tmpl +++ b/template/en/default/bug/show.html.tmpl @@ -28,16 +28,17 @@ [% 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" - bodyclasses = ['bz_bug', - "bz_status_$bug.bug_status", - "bz_component_$bug.component", - "bz_bug_$bug.bug_id" - ] + bodyattrs = bodyattrs %] [% PROCESS bug/navigate.html.tmpl %] |