Skip to content

Commit

Permalink
fixes Ticket #6300
Browse files Browse the repository at this point in the history
Signed-off-by: Mark Story <mark@mark-story.com>
  • Loading branch information
ceeram authored and markstory committed Nov 2, 2009
1 parent a377593 commit 988ab2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cake/libs/view/helpers/form.php
Expand Up @@ -1883,7 +1883,7 @@ function __generateOptions($name, $options = array()) {
}
$i = 0;
while ($i < 60) {
$data[$i] = sprintf('%02d', $i);
$data[sprintf('%02d', $i)] = sprintf('%02d', $i);
$i += $interval;
}
break;
Expand Down

0 comments on commit 988ab2d

Please sign in to comment.