diff options
Diffstat (limited to 'app/views/stats/index.phtml')
| -rw-r--r-- | app/views/stats/index.phtml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/views/stats/index.phtml b/app/views/stats/index.phtml index b24b859b8..0d144fcd5 100644 --- a/app/views/stats/index.phtml +++ b/app/views/stats/index.phtml @@ -102,12 +102,12 @@ <canvas id="statsFeedsPerCategory"></canvas> <script class="jsonData-stats" type="application/json"> <?php - echo json_encode(array( + echo json_encode([ 'canvasID' => 'statsFeedsPerCategory', 'charttype' => 'doughnut', 'data' => $this->feedByCategory['data'], 'labels' => $this->feedByCategory['label'], - ), JSON_UNESCAPED_UNICODE); + ], JSON_UNESCAPED_UNICODE); ?></script> </div> </div> @@ -118,12 +118,12 @@ <canvas id="statsEntriesPerCategory"></canvas> <script class="jsonData-stats" type="application/json"> <?php - echo json_encode(array( + echo json_encode([ 'canvasID' => 'statsEntriesPerCategory', 'charttype' => 'doughnut', 'data' => $this->entryByCategory['data'], 'labels' => $this->entryByCategory['label'], - ), JSON_UNESCAPED_UNICODE); + ], JSON_UNESCAPED_UNICODE); ?></script> </div> </div> |
