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:
authorStefan Giehl <stefan@matomo.org>2020-01-16 03:26:34 +0300
committerThomas Steur <tsteur@users.noreply.github.com>2020-01-16 03:26:34 +0300
commit7c059ecb5e433dec3538398c8413c45cd68a0c0b (patch)
tree026af3bafbd20f69b1aca757151c1d51a3bdfcd6 /plugins/Installation/Controller.php
parent8e2db8e1206e6778f3198558b05c25d655fc99e6 (diff)
Removes some methods deprecated for Matomo 4 (#15386)
* Removes deprecated Plugin.getListHooksRegistered and uses Plugin.registerEvents instead * Removes deprecated method Piwik\Piwik::doAsSuperUser * Remove deprecated SettingsPiwik::isPiwikInstalled and use SettingsPiwik::isMatomoInstalled instead
Diffstat (limited to 'plugins/Installation/Controller.php')
-rw-r--r--plugins/Installation/Controller.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Installation/Controller.php b/plugins/Installation/Controller.php
index 0392f96b5e..27ba28e91a 100644
--- a/plugins/Installation/Controller.php
+++ b/plugins/Installation/Controller.php
@@ -619,7 +619,7 @@ class Controller extends \Piwik\Plugin\ControllerAdmin
private function checkPiwikIsNotInstalled($possibleErrorMessage = null)
{
- if (!SettingsPiwik::isPiwikInstalled()) {
+ if (!SettingsPiwik::isMatomoInstalled()) {
return;
}