From: lpsolit%gmail.com <> Date: Mon, 10 Mar 2008 00:57:01 +0000 (+0000) Subject: Fixing bustage due to bug 367394 (no idea why it's burning, but this should fix it) X-Git-Tag: bugzilla-3.1.3~290 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8395dfa9da99caa8bdfa4cef7c7551a2b03a22fa;p=thirdparty%2Fbugzilla.git Fixing bustage due to bug 367394 (no idea why it's burning, but this should fix it) --- diff --git a/template/en/default/attachment/created.html.tmpl b/template/en/default/attachment/created.html.tmpl index 2b43165429..1f5bdb6ac5 100644 --- a/template/en/default/attachment/created.html.tmpl +++ b/template/en/default/attachment/created.html.tmpl @@ -33,7 +33,7 @@ ] %] [% FOREACH group = bug.groups_in %] - [% bodyclasses.push("bz_group_" _ group.name) %] + [% bodyclasses.push("bz_group_$group.name") %] [% END %] [% PROCESS global/header.html.tmpl diff --git a/template/en/default/attachment/updated.html.tmpl b/template/en/default/attachment/updated.html.tmpl index 2b9064c6a6..f7252e5c8d 100644 --- a/template/en/default/attachment/updated.html.tmpl +++ b/template/en/default/attachment/updated.html.tmpl @@ -34,7 +34,7 @@ ] %] [% FOREACH group = bug.groups_in %] - [% bodyclasses.push("bz_group_" _ group.name) %] + [% bodyclasses.push("bz_group_$group.name") %] [% END %] [% PROCESS global/header.html.tmpl diff --git a/template/en/default/bug/show.html.tmpl b/template/en/default/bug/show.html.tmpl index 33a65a6b13..373cfa327b 100644 --- a/template/en/default/bug/show.html.tmpl +++ b/template/en/default/bug/show.html.tmpl @@ -36,7 +36,7 @@ ] %] [% FOREACH group = bug.groups_in %] - [% bodyclasses.push("bz_group_" _ group.name) %] + [% bodyclasses.push("bz_group_$group.name") %] [% END %] [% PROCESS global/header.html.tmpl title = "$terms.Bug $bug.bug_id – $filtered_desc"