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:
authorsgiehl <stefan@piwik.org>2016-11-01 00:18:19 +0300
committersgiehl <stefan@piwik.org>2016-11-01 01:38:30 +0300
commita6b6176eb64ef597fe1b0fe089281d2e912289cc (patch)
tree72927154738c3c82d9a3ac8b8d2d635961655251 /plugins/Resolution
parent63f8d75ab0fe2fefd55a762ed87f5745305f9061 (diff)
Removes deprected renameUserSettingsModuleAndAction() methods
Diffstat (limited to 'plugins/Resolution')
-rw-r--r--plugins/Resolution/Resolution.php8
1 files changed, 0 insertions, 8 deletions
diff --git a/plugins/Resolution/Resolution.php b/plugins/Resolution/Resolution.php
index 7bd8cc3be0..5ab7692ccf 100644
--- a/plugins/Resolution/Resolution.php
+++ b/plugins/Resolution/Resolution.php
@@ -23,7 +23,6 @@ class Resolution extends \Piwik\Plugin
{
return array(
'Live.getAllVisitorDetails' => 'extendVisitorDetails',
- 'Request.getRenamedModuleAndAction' => 'renameUserSettingsModuleAndAction',
);
}
@@ -33,11 +32,4 @@ class Resolution extends \Piwik\Plugin
$visitor['resolution'] = $instance->getResolution();
}
-
- public function renameUserSettingsModuleAndAction(&$module, &$action)
- {
- if ($module == 'UserSettings' && ($action == 'getResolution' || $action == 'getConfiguration')) {
- $module = 'Resolution';
- }
- }
}