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>2013-10-01 23:55:14 +0400
committerThomas Steur <thomas.steur@gmail.com>2013-10-01 23:55:14 +0400
commite476ef097a7fa1b67c387fbeb2607f351293b0ec (patch)
treeb2750ad49b97f1a22a3eac1c7d992fa04b078dc7 /plugins/CoreUpdater/CoreUpdater.php
parent444d89d318718ecd5a61df804e1cd398afb6dabf (diff)
refs #4134 renamed some hooks
Diffstat (limited to 'plugins/CoreUpdater/CoreUpdater.php')
-rw-r--r--plugins/CoreUpdater/CoreUpdater.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/CoreUpdater/CoreUpdater.php b/plugins/CoreUpdater/CoreUpdater.php
index cb4f2edd1e..5bbfc2e9d9 100644
--- a/plugins/CoreUpdater/CoreUpdater.php
+++ b/plugins/CoreUpdater/CoreUpdater.php
@@ -31,8 +31,8 @@ class CoreUpdater extends \Piwik\Plugin
public function getListHooksRegistered()
{
$hooks = array(
- 'FrontController.dispatchCoreAndPluginUpdatesScreen' => 'dispatch',
- 'FrontController.checkForUpdates' => 'updateCheck',
+ 'Request.dispatchCoreAndPluginUpdatesScreen' => 'dispatch',
+ 'Updater.checkForUpdates' => 'updateCheck',
);
return $hooks;
}