Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthieu Napoli <matthieu@mnapoli.fr>2014-11-14 06:45:35 +0300
committerMatthieu Napoli <matthieu@mnapoli.fr>2014-11-14 06:45:35 +0300
commita91388d2b1b3c60733ce19f35a4675a1ba6467df (patch)
tree77256a0a24b6085541d73ba19f277fe88a7d0866 /plugins/ScheduledReports/Controller.php
parentc7295c121b94489edf2800c6b220ee86e7b4c496 (diff)
Replaced usage of deprecated Common::json_encode to json_encode
Diffstat (limited to 'plugins/ScheduledReports/Controller.php')
-rw-r--r--plugins/ScheduledReports/Controller.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ScheduledReports/Controller.php b/plugins/ScheduledReports/Controller.php
index 2bb64b8faf..2ae16cc410 100644
--- a/plugins/ScheduledReports/Controller.php
+++ b/plugins/ScheduledReports/Controller.php
@@ -66,7 +66,7 @@ class Controller extends \Piwik\Plugin\Controller
}
}
$view->reports = $reports;
- $view->reportsJSON = Common::json_encode($reportsById);
+ $view->reportsJSON = json_encode($reportsById);
$view->downloadOutputType = API::OUTPUT_INLINE;