Commit 2e617ed0 authored by Frédéric Buclin's avatar Frédéric Buclin

Backout bug 768573

parent 1600d4c7
...@@ -885,7 +885,7 @@ ...@@ -885,7 +885,7 @@
[% USE Bugzilla %] [% USE Bugzilla %]
[% FOREACH field = Bugzilla.active_custom_fields %] [% FOREACH field = Bugzilla.active_custom_fields %]
<tr> <tr>
[% INCLUDE bug/field.html.tmpl value = bug.${field.name} [% PROCESS bug/field.html.tmpl value = bug.${field.name}
editable = bug.check_can_change_field(field.name, 0, 1) editable = bug.check_can_change_field(field.name, 0, 1)
value_span = 2 %] value_span = 2 %]
</tr> </tr>
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
#%] #%]
<div id="status"> <div id="status">
[% INCLUDE bug/field.html.tmpl [% PROCESS bug/field.html.tmpl
no_tds = 1 no_tds = 1
field = bug_fields.bug_status field = bug_fields.bug_status
value = bug.bug_status value = bug.bug_status
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
[% END %] [% END %]
<span id="resolution_settings"> <span id="resolution_settings">
[% INCLUDE bug/field.html.tmpl [% PROCESS bug/field.html.tmpl
no_tds = 1 no_tds = 1
field = bug_fields.resolution field = bug_fields.resolution
value = bug.resolution value = bug.resolution
......
...@@ -176,7 +176,7 @@ ...@@ -176,7 +176,7 @@
[% field_counter = field_counter + 1 %] [% field_counter = field_counter + 1 %]
[%# Odd-numbered fields get an opening <tr> %] [%# Odd-numbered fields get an opening <tr> %]
[% '<tr>' IF field_counter % 2 %] [% '<tr>' IF field_counter % 2 %]
[% INCLUDE bug/field.html.tmpl value=bug.${field.name} editable=0 %] [% PROCESS bug/field.html.tmpl value=bug.${field.name} editable=0 %]
[%# Even-numbered fields get a closing <tr> %] [%# Even-numbered fields get a closing <tr> %]
[% '</tr>' IF !(field_counter % 2) %] [% '</tr>' IF !(field_counter % 2) %]
[% IF extra_field_item %] [% IF extra_field_item %]
......
...@@ -136,7 +136,7 @@ ...@@ -136,7 +136,7 @@
value="[% dontchange FILTER html %]" value="[% dontchange FILTER html %]"
size="6"> size="6">
</td> </td>
[% INCLUDE bug/field.html.tmpl [% PROCESS bug/field.html.tmpl
field = bug_fields.deadline, value = dontchange field = bug_fields.deadline, value = dontchange
editable = 1, allow_dont_change = 1 %] editable = 1, allow_dont_change = 1 %]
</tr> </tr>
...@@ -273,7 +273,7 @@ ...@@ -273,7 +273,7 @@
[% bug = 0 %] [% bug = 0 %]
[% FOREACH field = Bugzilla.active_custom_fields %] [% FOREACH field = Bugzilla.active_custom_fields %]
<tr> <tr>
[% INCLUDE bug/field.html.tmpl value = dontchange [% PROCESS bug/field.html.tmpl value = dontchange
editable = 1 editable = 1
allow_dont_change = 1 %] allow_dont_change = 1 %]
</tr> </tr>
......
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