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:
Diffstat (limited to 'core/API/Proxy.php')
-rw-r--r--core/API/Proxy.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/API/Proxy.php b/core/API/Proxy.php
index 26e2ceb4cc..1d348e1b87 100644
--- a/core/API/Proxy.php
+++ b/core/API/Proxy.php
@@ -262,7 +262,7 @@ class Proxy extends Singleton
* **Example**
*
* // append (0 hits) to the end of row labels whose row has 0 hits for any report that has the 'nb_hits' metric
- * Piwik::addAction('API.Actions.getPageUrls', function (&$returnValue, $info)) {
+ * Piwik::addAction('API.Actions.getPageUrls.end', function (&$returnValue, $info)) {
* // don't process non-DataTable reports and reports that don't have the nb_hits column
* if (!($returnValue instanceof DataTableInterface)
* || in_array('nb_hits', $returnValue->getColumns())