bugfix [ 917783 ] 6.0.0 Date Changes

This commit is contained in:
JT Smith 2004-03-25 20:16:42 +00:00
parent 2e240b8cda
commit b20513c235
2 changed files with 6 additions and 6 deletions

View file

@ -12,6 +12,10 @@ Andreas Graf).
- Bugfix [ 912217 ] top level nav macro problems
- Bugfix [ 912401 ] level 0 nav
- Bugfix [ 912400 ] db link not working
- Bugfix [ 913114 ] Can't change passwords from display account screen.
(Thanks to Frank Dillon.)
- Bugfix [ 916538 ] Typo in lib/WebGUI/Auth.pm
- Bugfix [ 917783 ] 6.0.0 Date Changes
6.0.0

View file

@ -682,12 +682,8 @@ sub dateTime {
$output = $self->_tableFormRow($label,$output);
} else {
$output = WebGUI::Form::hidden({
"name"=>$name."_date",
"value"=>epochToSet($value)
});
$output .= WebGUI::Form::hidden({
"name"=>$name."_time",
"value"=>epochToHuman($value,"%j:%n:%s")
"name"=>$name,
"value"=>epochToSet($value,1)
});
}
$self->{_data} .= $output;