change date time print format, two letter year

This commit is contained in:
Dario Rekowski on RockPI 2020-01-20 11:21:58 +00:00
parent a33031251d
commit 813a1e6ef3

View File

@ -64,7 +64,7 @@ $this->loadHelper('Form', [
<td><?= $this->element('printGradido', ['number' => $user['balance']]) ?></td>
<td title="<?= $user['pubkeyhex'] ?>"><?= substr($user['pubkeyhex'], 0, 10) . '...' ?></td>
<td><?php if($user['created'] != null) {
echo $user['created']->format('d.m.Y H:i:s');
echo $user['created']->format('d.m.y H:i:s');
}
?></td>
</tr>