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:
authorMatthieu Napoli <matthieu@mnapoli.fr>2015-03-10 06:30:24 +0300
committerMatthieu Napoli <matthieu@mnapoli.fr>2015-03-10 06:30:24 +0300
commita1fe093ab4cd5243ef3ff22ebd5f6814a6e1c4a7 (patch)
treec1664cd45887f5ba846ee79ace2231ad17c16fe0 /core/Session.php
parent8e37ebbc15711796990bcf6c9a30da17386ba93b (diff)
Remove deprecated SettingsPiwik::rewriteTmpPathWithInstanceId()
Diffstat (limited to 'core/Session.php')
-rw-r--r--core/Session.php6
1 files changed, 2 insertions, 4 deletions
diff --git a/core/Session.php b/core/Session.php
index 9e49987072..9733593205 100644
--- a/core/Session.php
+++ b/core/Session.php
@@ -124,8 +124,7 @@ class Session extends Zend_Session
we recommend that you <a href='http://piwik.org/faq/how-to-install/#faq_133' rel='noreferrer' target='_blank'>enable database session storage</a>.";
}
- $pathToSessions = Filechecks::getErrorMessageMissingPermissions(Filesystem::getPathToPiwikRoot() . '/tmp/sessions/');
- $pathToSessions = SettingsPiwik::rewriteTmpPathWithInstanceId($pathToSessions);
+ $pathToSessions = Filechecks::getErrorMessageMissingPermissions(self::getSessionsDirectory());
$message = sprintf("Error: %s %s %s\n<pre>Debug: the original error was \n%s</pre>",
Piwik::translate('General_ExceptionUnableToStartSession'),
$pathToSessions,
@@ -147,8 +146,7 @@ class Session extends Zend_Session
*/
public static function getSessionsDirectory()
{
- $path = PIWIK_USER_PATH . '/tmp/sessions';
- return SettingsPiwik::rewriteTmpPathWithInstanceId($path);
+ return StaticContainer::get('path.tmp') . '/sessions';
}
public static function close()