aboutsummaryrefslogtreecommitdiff
path: root/resources/views/stats.blade.php
diff options
context:
space:
mode:
Diffstat (limited to 'resources/views/stats.blade.php')
-rw-r--r--resources/views/stats.blade.php2
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) . "]";
?>