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 'plugins/Overlay/API.php')
-rw-r--r--plugins/Overlay/API.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/Overlay/API.php b/plugins/Overlay/API.php
index 9db64023c8..26cf98a5c5 100644
--- a/plugins/Overlay/API.php
+++ b/plugins/Overlay/API.php
@@ -2,6 +2,7 @@
use Piwik\Config;
use Piwik\Piwik;
use Piwik\Access;
+use Piwik\DataTable;
/**
* Piwik - Open source web analytics
@@ -81,7 +82,7 @@ class Piwik_Overlay_API
$url = Piwik_Tracker_Action::excludeQueryParametersFromUrl($url, $idSite);
// we don't unsanitize $url here. it will be done in the Transitions plugin.
- $resultDataTable = new Piwik_DataTable;
+ $resultDataTable = new DataTable;
try {
$limitBeforeGrouping = Config::getInstance()->General['overlay_following_pages_limit'];