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/Overlay
parent444d89d318718ecd5a61df804e1cd398afb6dabf (diff)
refs #4134 renamed some hooks
Diffstat (limited to 'plugins/Overlay')
-rw-r--r--plugins/Overlay/API.php2
-rw-r--r--plugins/Overlay/Overlay.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Overlay/API.php b/plugins/Overlay/API.php
index 42d4c97067..b4993432f3 100644
--- a/plugins/Overlay/API.php
+++ b/plugins/Overlay/API.php
@@ -118,7 +118,7 @@ class API
private function authenticate($idSite)
{
$notification = null;
- Piwik_PostEvent('FrontController.initAuthenticationObject',
+ Piwik_PostEvent('Request.initAuthenticationObject',
array(&$notification, $allowCookieAuthentication = true));
$auth = \Piwik\Registry::get('auth');
diff --git a/plugins/Overlay/Overlay.php b/plugins/Overlay/Overlay.php
index 10673003ae..7a7159d896 100644
--- a/plugins/Overlay/Overlay.php
+++ b/plugins/Overlay/Overlay.php
@@ -28,7 +28,7 @@ class Overlay extends \Piwik\Plugin
function getListHooksRegistered()
{
return array(
- 'AssetManager.getJsFiles' => 'getJsFiles',
+ 'AssetManager.getJavaScriptFiles' => 'getJsFiles',
'Translate.getClientSideTranslationKeys' => 'getClientSideTranslationKeys'
);
}