diff --git a/docs/changelog/6.x.x.txt b/docs/changelog/6.x.x.txt index 01101119b..d012f1f74 100644 --- a/docs/changelog/6.x.x.txt +++ b/docs/changelog/6.x.x.txt @@ -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 diff --git a/lib/WebGUI/HTMLForm.pm b/lib/WebGUI/HTMLForm.pm index 4b27e76a4..19dbd9b0b 100644 --- a/lib/WebGUI/HTMLForm.pm +++ b/lib/WebGUI/HTMLForm.pm @@ -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;