]> source.dussan.org Git - nextcloud-server.git/commitdiff
also adjust template properly for log date fix
authorBernhard Posselt <nukeawhale@gmail.com>
Wed, 17 Apr 2013 13:31:05 +0000 (15:31 +0200)
committerBernhard Posselt <nukeawhale@gmail.com>
Wed, 17 Apr 2013 13:31:05 +0000 (15:31 +0200)
settings/templates/admin.php

index fdaba95ac1718a73ba99414f15dfa71d364e6457..182168ce9eb4553344f83357d8ea1c06bf774afe 100644 (file)
@@ -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;?>