Skip to content

Commit

Permalink
fix #23
Browse files Browse the repository at this point in the history
iSSUE WITH THE % CONTROL
  • Loading branch information
bgenere committed Mar 13, 2017
1 parent 1b31802 commit 1470719
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cultivationtasktime.php
Original file line number Diff line number Diff line change
Expand Up @@ -825,11 +825,11 @@ function displayPlotTaskLinesForm(FormOther $formother, Task $object)
print '</td>';
// Current Coverage
print '<td class=right>';
print $formother->select_percent($line->coverage, 'plotoldcoverage' . $line->id, 1);
print $formother->select_percent($line->coverage, 'plotoldcoverage' . $line->id, 1, 1);
print '</td>';
// Coverage
print '<td class=right>';
print $formother->select_percent($line->coverage, 'plotlinecoverage' . $line->id);
print $formother->select_percent($line->coverage, 'plotlinecoverage' . $line->id,0,1,$line->coverage);
print '</td>';

print '</tr>';
Expand Down

0 comments on commit 1470719

Please sign in to comment.