Skip to content

Commit

Permalink
Fix for appointment status settings in Administration->Lists.
Browse files Browse the repository at this point in the history
  • Loading branch information
teryhill authored and bradymiller committed Apr 15, 2016
1 parent 4ad8dea commit d4b7f8f
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions interface/super/edit_list.php
Original file line number Diff line number Diff line change
Expand Up @@ -308,11 +308,11 @@ function writeOptionLine($option_id, $title, $seq, $default, $value, $mapping=''
"onclick='defClicked($opt_line_no)' class='optin'$checked />";
echo "</td>\n";

echo " <td align='center' class='optcell'>";
echo "<input type='checkbox' name='opt[$opt_line_no][activity]' value='1' " .
" class='optin'$checked_active />";
echo "</td>\n";
echo " <td align='center' class='optcell'>";
echo "<input type='checkbox' name='opt[$opt_line_no][activity]' value='1' " .
" class='optin'$checked_active />";
echo "</td>\n";

// Tax rates, contraceptive methods and LBF names have an additional attribute.
//
if ($list_id == 'taxrate' || $list_id == 'contrameth' || $list_id == 'lbfnames' || $list_id == 'transactions') {
Expand Down Expand Up @@ -876,6 +876,7 @@ function mysubmit() {
<td><b><?php xl('Title' ,'e'); ?></b></td>
<td><b><?php xl('Order' ,'e'); ?></b></td>
<td><b><?php xl('Default' ,'e'); ?></b></td>
<td><b><?php xl('Active','e'); ?></b></td>
<td><b><?php xl('Color' ,'e'); ?></b></td>
<td><b><?php xl('Alert Time','e'); ?></b></td>
<td><b><?php xl('Check In' ,'e');?>&nbsp;&nbsp;&nbsp;&nbsp;</b></td>
Expand Down

0 comments on commit d4b7f8f

Please sign in to comment.