Fixed Bug #196 by using Date::Manip to put the date in the correct format.
This commit is contained in:
parent
9658d683f6
commit
0aaaa1cbed
1 changed files with 5 additions and 0 deletions
|
@ -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'},
|
||||
|
|
Loading…
Reference in a new issue