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>2014-01-23 05:26:57 +0400
committerThomas Steur <thomas.steur@gmail.com>2014-01-23 05:26:57 +0400
commit81e7f870124d2356c1784355e54fb4716901dfec (patch)
tree0162170ba0d4e5d3e206897eeed50fd76285a2a2 /core/SettingsServer.php
parent0c0ab33efd14b4223ef56f32c46879160f3ef7d5 (diff)
refs #4564 introducing new methods to make user a user has superuser access. Old methods will still work but are marked as deprecated and they will be removed in a future release
Diffstat (limited to 'core/SettingsServer.php')
-rw-r--r--core/SettingsServer.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/SettingsServer.php b/core/SettingsServer.php
index 0e6baf131d..0f9245b651 100644
--- a/core/SettingsServer.php
+++ b/core/SettingsServer.php
@@ -124,7 +124,7 @@ class SettingsServer
$minimumMemoryLimit = Config::getInstance()->General['minimum_memory_limit'];
if (self::isArchivePhpTriggered()
- && Piwik::isUserIsSuperUser()
+ && Piwik::hasUserSuperUserAccess()
) {
// archive.php: no time limit, high memory limit
self::setMaxExecutionTime(0);