fixed typo, subtraction instead of assignment

This commit is contained in:
Colin Kuskie 2005-12-10 21:16:30 +00:00
parent f895ead4d5
commit 53a1475c4b

View file

@ -178,7 +178,7 @@ sub _convertToEpoch {
$hour += 12;
}
$hour = $self->_appendZero($hour);
$minute - $self->_appendZero($minute);
$minute = $self->_appendZero($minute);
return WebGUI::DateTime::humanToEpoch("$year-$month-$day $hour:$minute:00");
}