fixed typo, subtraction instead of assignment
This commit is contained in:
parent
f895ead4d5
commit
53a1475c4b
1 changed files with 1 additions and 1 deletions
|
|
@ -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");
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue