fixed default to be hours (not minutes)

This commit is contained in:
Ralf Becker 2006-03-27 12:46:21 +00:00
parent 54f423b6cf
commit 4a98fcd281

View File

@ -368,7 +368,7 @@
$cell_name = $cell['name'];
$cell['name'] .= '[value]';
if (strstr($input_format,'m') && $value < 60)
if (strstr($input_format,'m') && $value && $value < 60)
{
$unit = 'm';
}