show created date on members page

This commit is contained in:
Ben Harris 2020-06-23 10:16:58 -04:00
parent ed0372bbb8
commit 9c4863c661
1 changed files with 3 additions and 0 deletions

View File

@ -15,6 +15,9 @@
</p>
<p><strong>os</strong>: <?=$member->os?></p>
<p><strong>channel</strong>: <?=$member->channel?></p>
<?php if (!empty($member->created)) { ?>
<p><strong>created</strong>: <?=date("D M jS, Y", strtotime($member->created))?></p>
<?php } ?>
</div>
</div>
<?php endforeach;?>