summaryrefslogtreecommitdiffstats
path: root/settings/templates
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-04-17 15:31:05 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2013-04-17 15:31:05 +0200
commit4679e789e1bd1c485f2c7f74af8d20bcaff1e44f (patch)
treeb74d51d8ac45960f11e5c48cf64833cde790d83c /settings/templates
parentf7e29eabf29e4bda052ad170df1955fce0ad37ee (diff)
downloadnextcloud-server-4679e789e1bd1c485f2c7f74af8d20bcaff1e44f.tar.gz
nextcloud-server-4679e789e1bd1c485f2c7f74af8d20bcaff1e44f.zip
also adjust template properly for log date fix
Diffstat (limited to 'settings/templates')
-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;?>