aboutsummaryrefslogtreecommitdiffstats
path: root/settings/templates/admin.php
diff options
context:
space:
mode:
Diffstat (limited to 'settings/templates/admin.php')
-rw-r--r--settings/templates/admin.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/settings/templates/admin.php b/settings/templates/admin.php
index fdaba95ac17..182168ce9eb 100644
--- a/settings/templates/admin.php
+++ b/settings/templates/admin.php
@@ -214,7 +214,11 @@ endfor;?>
<?php p($entry->message);?>
</td>
<td>
- <?php p(OC_Util::formatDate($entry->time));?>
+ <?php if(is_int($entry->time)){
+ p(OC_Util::formatDate($entry->time));
+ } else {
+ p($entry->time);
+ }?>
</td>
</tr>
<?php endforeach;?>