Setting a Date attribute for a User

Permalink
What is the correct format for setting a Date attribute for a user?

I have done this, but it just goes to 1/1/1970

$ui->setAttribute("payment_date", new DateTime());

yolk
 
Navinto replied on at Permalink Best Answer Reply
Navinto
try
$date = Loader::helper(date);
$ui->setAttribute('payment_date', $date->getLocalDateTime());
yolk replied on at Permalink Reply
yolk
Thanks Navinto