Skip to content

Commit

Permalink
Fixed issue: Creation date not properly shown in user list
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed Apr 20, 2022
1 parent f7b3561 commit 7a049a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/models/User.php
Expand Up @@ -169,7 +169,7 @@ public function getFormattedDateCreated()
{
$dateCreated = $this->created;
$date = new DateTime($dateCreated);
return $date->format($this->dateformat);
return $date->format($this->getDateFormat());
}

/**
Expand Down

0 comments on commit 7a049a9

Please sign in to comment.