Commit 143f128b authored by lpsolit%gmail.com's avatar lpsolit%gmail.com

Bug 291048: Empty cells in show_activity.cgi when removed/added is zero - Patch…

Bug 291048: Empty cells in show_activity.cgi when removed/added is zero - Patch by Olav Vitters <bugzilla-mozilla@bkor.dhs.org> r=LpSolit a=justdave
parent 8f039298
......@@ -76,7 +76,7 @@
[% change.field %]
</td>
<td>
[% IF change.removed %]
[% IF change.removed.defined %]
[% IF change.fieldname == 'estimated_time' ||
change.fieldname == 'remaining_time' ||
change.fieldname == 'work_time' %]
......@@ -93,7 +93,7 @@
[% END %]
</td>
<td>
[% IF change.added %]
[% IF change.added.defined %]
[% IF change.fieldname == 'estimated_time' ||
change.fieldname == 'remaining_time' ||
change.fieldname == 'work_time' %]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment