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:
authormattab <matthieu.aubry@gmail.com>2013-02-17 14:04:33 +0400
committerFabian Becker <halfdan@xnorfz.de>2013-02-20 04:51:30 +0400
commitd152c932d6c24e9705e3380a25ecc6a256d44343 (patch)
treee25cc476150f1bf1828fd1a2bbc1b757e5178441 /plugins/UsersManager
parentad78457d26170e7b3255556c56e5dfee008f8606 (diff)
Fixes #2830 Implementing Tracker Cache TTL (in config file, [Tracker]
Diffstat (limited to 'plugins/UsersManager')
-rw-r--r--plugins/UsersManager/API.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/UsersManager/API.php b/plugins/UsersManager/API.php
index f7de67302e..a5e58a703e 100644
--- a/plugins/UsersManager/API.php
+++ b/plugins/UsersManager/API.php
@@ -381,7 +381,7 @@ class Piwik_UsersManager_API
// we reload the access list which doesn't yet take in consideration this new user
Zend_Registry::get('access')->reloadAccess();
- Piwik_Common::deleteTrackerCache();
+ Piwik_Tracker_Cache::deleteTrackerCache();
Piwik_PostEvent('UsersManager.addUser', $userLogin);
}
@@ -445,7 +445,7 @@ class Piwik_UsersManager_API
),
"login = '$userLogin'"
);
- Piwik_Common::deleteTrackerCache();
+ Piwik_Tracker_Cache::deleteTrackerCache();
Piwik_PostEvent('UsersManager.updateUser', $userLogin);
}
@@ -471,7 +471,7 @@ class Piwik_UsersManager_API
$this->deleteUserOnly( $userLogin );
$this->deleteUserAccess( $userLogin );
- Piwik_Common::deleteTrackerCache();
+ Piwik_Tracker_Cache::deleteTrackerCache();
}
/**
@@ -572,7 +572,7 @@ class Piwik_UsersManager_API
// we reload the access list which doesn't yet take in consideration this new user access
Zend_Registry::get('access')->reloadAccess();
- Piwik_Common::deleteTrackerCache();
+ Piwik_Tracker_Cache::deleteTrackerCache();
}
/**