diff options
Diffstat (limited to 'template/en/default/bug/show.xml.tmpl')
-rw-r--r-- | template/en/default/bug/show.xml.tmpl | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/template/en/default/bug/show.xml.tmpl b/template/en/default/bug/show.xml.tmpl index 1db320c4f..42464aa14 100644 --- a/template/en/default/bug/show.xml.tmpl +++ b/template/en/default/bug/show.xml.tmpl @@ -65,16 +65,16 @@ [% PROCESS section_flags obj => bug %] [% IF displayfields.long_desc %] - [% FOREACH c = bug.longdescs %] - [% NEXT IF c.isprivate && !user.in_group(Param("insidergroup")) %] - <long_desc isprivate="[% c.isprivate FILTER xml %]"> + [% FOREACH c = bug.comments %] + [% NEXT IF c.is_private && !user.in_group(Param("insidergroup")) %] + <long_desc isprivate="[% c.is_private FILTER xml %]"> <commentid>[% c.id FILTER xml %]</commentid> <who name="[% c.author.name FILTER xml %]">[% c.author.email FILTER email FILTER xml %]</who> - <bug_when>[% c.time FILTER time("%Y-%m-%d %T %z") FILTER xml %]</bug_when> + <bug_when>[% c.creation_ts FILTER time("%Y-%m-%d %T %z") FILTER xml %]</bug_when> [% IF user.in_group(Param('timetrackinggroup')) && (c.work_time - 0 != 0) %] <work_time>[% PROCESS formattimeunit time_unit = c.work_time FILTER xml %]</work_time> [% END %] - <thetext>[% c.body FILTER xml %]</thetext> + <thetext>[% c.body_full FILTER xml %]</thetext> </long_desc> [% END %] [% END %] @@ -151,4 +151,4 @@ [% END %] /> [% END %] -[% END %]
\ No newline at end of file +[% END %] |