]> source.dussan.org Git - nextcloud-server.git/commitdiff
fix timestamps when viewing logs
authorRobin Appelman <icewind@owncloud.com>
Mon, 26 Mar 2012 22:21:31 +0000 (00:21 +0200)
committerRobin Appelman <icewind@owncloud.com>
Mon, 26 Mar 2012 22:21:31 +0000 (00:21 +0200)
settings/js/log.js

index 3814d9c10bf449d2a53fa3aae4ff4f682932601a..ae83f0a6283ab2ee569075ec4c44a2c0ce4367cf 100644 (file)
@@ -32,7 +32,7 @@ OC.Log={
                        row.append(messageTd);
                        
                        var timeTd=$('<td/>');
-                       timeTd.text(formatDate(entry.time));
+                       timeTd.text(formatDate(entry.time*1000));
                        row.append(timeTd);
                        $('#log').append(row);
                }