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 'core/Session/SessionNamespace.php')
-rw-r--r--core/Session/SessionNamespace.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/Session/SessionNamespace.php b/core/Session/SessionNamespace.php
index 7b041ec461..63ede5f45e 100644
--- a/core/Session/SessionNamespace.php
+++ b/core/Session/SessionNamespace.php
@@ -10,7 +10,7 @@
*/
namespace Piwik\Session;
-use Piwik\SettingsServer;
+use Piwik\Common;
use Zend_Session_Namespace;
/**
@@ -27,7 +27,7 @@ class SessionNamespace extends Zend_Session_Namespace
*/
public function __construct($namespace = 'Default', $singleInstance = false)
{
- if (SettingsServer::isPhpCliMode()) {
+ if (Common::isPhpCliMode()) {
self::$_readable = true;
return;
}