summaryrefslogtreecommitdiffstats
path: root/lib/SimpleSAML/SessionHandlerPHP.php
diff options
context:
space:
mode:
authorJaime Perez Crespo <jaime.perez@uninett.no>2016-06-08 15:07:01 +0200
committerJaime Perez Crespo <jaime.perez@uninett.no>2016-06-08 15:07:01 +0200
commit17e63ab160b74dde508102dcbbf717f5c266e7be (patch)
tree9aa7ff38584e67c7e752da79261d174c60b4cd26 /lib/SimpleSAML/SessionHandlerPHP.php
parentdd60fe75ef49c60ad39e47ea43512c6d3b59d306 (diff)
downloadsimplesamlphp-17e63ab160b74dde508102dcbbf717f5c266e7be.zip
simplesamlphp-17e63ab160b74dde508102dcbbf717f5c266e7be.tar.gz
simplesamlphp-17e63ab160b74dde508102dcbbf717f5c266e7be.tar.bz2
Stop using the deprecated SimpleSAML_Configuration::getBaseURL() method.
Diffstat (limited to 'lib/SimpleSAML/SessionHandlerPHP.php')
-rw-r--r--lib/SimpleSAML/SessionHandlerPHP.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/SimpleSAML/SessionHandlerPHP.php b/lib/SimpleSAML/SessionHandlerPHP.php
index eb0c7d5..dd689d0 100644
--- a/lib/SimpleSAML/SessionHandlerPHP.php
+++ b/lib/SimpleSAML/SessionHandlerPHP.php
@@ -318,7 +318,7 @@ class SimpleSAML_SessionHandlerPHP extends SimpleSAML_SessionHandler
$ret['path'] = $config->getBoolean(
'session.phpsession.limitedpath',
false
- ) ? '/'.$config->getBaseURL() : '/';
+ ) ? $config->getBasePath() : '/';
}
$ret['httponly'] = $config->getBoolean('session.phpsession.httponly', true);