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:
authorThomas Steur <thomas.steur@gmail.com>2015-05-06 01:48:19 +0300
committerThomas Steur <thomas.steur@gmail.com>2015-05-10 23:51:14 +0300
commita20e71c61aa9ae74dac9e1b899772357d4d3a64c (patch)
treeadce50cc7d93907182d96a19dfe6b3fb8badc291 /core/Plugin/Manager.php
parente5f1fba3b54a04b321fcaf1edf2c0f827e56b681 (diff)
Removed deprecated methods.
As the plugin does now nothing anymore, I removed it.
Diffstat (limited to 'core/Plugin/Manager.php')
-rw-r--r--core/Plugin/Manager.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/Plugin/Manager.php b/core/Plugin/Manager.php
index 4992785380..341f2f3c47 100644
--- a/core/Plugin/Manager.php
+++ b/core/Plugin/Manager.php
@@ -1205,6 +1205,8 @@ class Manager
*/
private function unloadPluginFromMemory($pluginName)
{
+ $this->unloadPlugin($pluginName);
+
$key = array_search($pluginName, $this->pluginsToLoad);
if ($key !== false) {
unset($this->pluginsToLoad[$key]);