diff options
author | Camil Staps | 2016-08-29 09:41:54 +0200 |
---|---|---|
committer | Camil Staps | 2016-08-29 09:42:00 +0200 |
commit | 109ff3ddcb32c5404d596f25b598f103cf06bf88 (patch) | |
tree | ada2651d3055620ae67ac1683e1dc44a0a562edd /resources | |
parent | Fix critical error from 5cd0398 (diff) |
Fix illegal octal literals on stats page
Diffstat (limited to 'resources')
-rw-r--r-- | resources/views/stats.blade.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/views/stats.blade.php b/resources/views/stats.blade.php index 72ed6e1..e7d0714 100644 --- a/resources/views/stats.blade.php +++ b/resources/views/stats.blade.php @@ -48,7 +48,7 @@ $db_stats = RandomLog $stats = []; foreach ($db_stats as $stat) { - $stats[] = "[Date.UTC" . date("(Y,n-1,d)", strtotime($stat->created_at)) . "," . $stat->count . "]"; + $stats[] = "[Date.UTC" . date("(Y,n-1,j)", strtotime($stat->created_at)) . "," . $stat->count . "]"; } $stats = "[" . implode(",", $stats) . "]"; ?> |