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
path: root/config
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 /config
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 'config')
-rw-r--r--config/global.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/global.php b/config/global.php
index 5499b0920a..189a2cdf77 100644
--- a/config/global.php
+++ b/config/global.php
@@ -56,7 +56,7 @@ return array(
// If Piwik is not installed yet, it's possible the tmp/ folder is not writable
// we prevent failing with an unclear message eg. coming from doctrine-cache
// by forcing to use a cache backend which always works ie. array
- if(!\Piwik\SettingsPiwik::isPiwikInstalled()) {
+ if(!\Piwik\SettingsPiwik::isMatomoInstalled()) {
$backend = 'array';
} else {
try {