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/DataTable/Manager.php')
-rw-r--r--core/DataTable/Manager.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/core/DataTable/Manager.php b/core/DataTable/Manager.php
index eab94df8f8..21dc600481 100644
--- a/core/DataTable/Manager.php
+++ b/core/DataTable/Manager.php
@@ -9,6 +9,8 @@
* @package Piwik
*/
+use Piwik\Common;
+
/**
* The DataTable_Manager registers all the instanciated DataTable and provides an
* easy way to access them. This is used to store all the DataTable during the archiving process.
@@ -112,7 +114,7 @@ class Piwik_DataTable_Manager
public function deleteTable($id)
{
if (isset($this->tables[$id])) {
- destroy($this->tables[$id]);
+ Common::destroy($this->tables[$id]);
$this->setTableDeleted($id);
}
}