Fixed Bug #196 by using Date::Manip to put the date in the correct format.

This commit is contained in:
wolfpac444 2003-03-16 07:39:27 +00:00
parent 9658d683f6
commit 0aaaa1cbed

View file

@ -174,6 +174,11 @@ if ($delete){
$template->param( modify => 1 );
}
#Convert dateofbirth to correct format
$data->{'dateofbirth'}=ParseDate($data->{'dateofbirth'});
$data->{'dateofbirth'}=UnixDate($data->{'dateofbirth'},'%d/%m/%Y');
$template->param(
member => $member,
firstname => $data->{'firstname'},