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:
Diffstat (limited to 'plugins/TwoFactorAuth/Validator.php')
-rw-r--r--plugins/TwoFactorAuth/Validator.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/TwoFactorAuth/Validator.php b/plugins/TwoFactorAuth/Validator.php
index 77b4bb2714..382ad5f99c 100644
--- a/plugins/TwoFactorAuth/Validator.php
+++ b/plugins/TwoFactorAuth/Validator.php
@@ -34,7 +34,7 @@ class Validator
return false;
}
- if (!SettingsPiwik::isPiwikInstalled()) {
+ if (!SettingsPiwik::isMatomoInstalled()) {
return false;
}
@@ -45,7 +45,7 @@ class Validator
{
Piwik::checkUserIsNotAnonymous();
- if (!SettingsPiwik::isPiwikInstalled()) {
+ if (!SettingsPiwik::isMatomoInstalled()) {
throw new NotYetInstalledException('Matomo is not set up yet');
}
}