summaryrefslogtreecommitdiff
path: root/src/web/_views/apps
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2024-05-28 21:03:16 -0400
committerFreya Murphy <freya@freyacat.org>2024-05-28 21:03:16 -0400
commit268dfc987664416db099761d51a5c007eb926904 (patch)
tree8272ea615092a412d9da567e70e9468027219c8c /src/web/_views/apps
parente (diff)
downloadxssbook2-268dfc987664416db099761d51a5c007eb926904.tar.gz
xssbook2-268dfc987664416db099761d51a5c007eb926904.tar.bz2
xssbook2-268dfc987664416db099761d51a5c007eb926904.zip
fix date
Diffstat (limited to 'src/web/_views/apps')
-rw-r--r--src/web/_views/apps/profile/main.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/web/_views/apps/profile/main.php b/src/web/_views/apps/profile/main.php
index 922ce64..6d25c98 100644
--- a/src/web/_views/apps/profile/main.php
+++ b/src/web/_views/apps/profile/main.php
@@ -181,7 +181,7 @@
</tr>
<tr>
<td><strong><?=ucfirst(lang('about_general_birth_date'))?></strong></td>
- <td><?=$user['birth_date']?></td>
+ <td><?=$this->main->date($user['birth_date'])?></td>
</tr>
</table>
<h1><?=ucfirst(lang('about_stats'))?></h1>
@@ -204,11 +204,11 @@
</tr>
<tr>
<td><strong><?=ucfirst(lang('about_stats_joined'))?></strong></td>
- <td><?=$user['created']?></td>
+ <td><?=$this->main->date($user['created'])?></td>
</tr>
<tr>
<td><strong><?=ucfirst(lang('about_stats_seen'))?></strong></td>
- <td><?=$user['seen']?></td>
+ <td><?=$this->main->date($user['seen'])?></td>
</tr>
</table>
</div>