diff options
author | Bernhard Posselt <nukeawhale@gmail.com> | 2013-04-17 15:31:05 +0200 |
---|---|---|
committer | Bernhard Posselt <nukeawhale@gmail.com> | 2013-04-17 15:31:05 +0200 |
commit | 4679e789e1bd1c485f2c7f74af8d20bcaff1e44f (patch) | |
tree | b74d51d8ac45960f11e5c48cf64833cde790d83c /settings/templates | |
parent | f7e29eabf29e4bda052ad170df1955fce0ad37ee (diff) | |
download | nextcloud-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.php | 6 |
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;?> |