- Make the time selection look a little better

This commit is contained in:
dave 2009-02-11 05:53:23 +00:00
parent 2112dca205
commit 1b4e596a0f

View File

@ -123,8 +123,8 @@ foreach($times as $x=>$t) {
echo "<input onclick=\"checkboxclicked(this)\" $ch type=\"checkbox\" name=\"time[]\" value=\"$x\" />";
$st = substr($t['starttime'], 0, 5);
$end = substr($t['endtime'], 0, 5);
echo "</td><td><b>{$times[$x]['date']} $st - $end</b></td>";
echo "<td>{$t['name']}</td>";
echo "</td><td><b>{$times[$x]['date']} $st - $end</b></td></tr>";
echo "<tr><td></td><td><p>{$t['name']}</td>";
echo "</tr>";
}