summaryrefslogtreecommitdiffstats
path: root/lib/SimpleSAML/SessionHandlerPHP.php
diff options
context:
space:
mode:
authorOlav Morken <olav.morken@uninett.no>2010-08-09 08:51:38 +0000
committerOlav Morken <olav.morken@uninett.no>2010-08-09 08:51:38 +0000
commiteceef567844288172e8916960d7dcd6fb178d353 (patch)
tree54822f6ade00c2859037ee05834e06f44b9f4a00 /lib/SimpleSAML/SessionHandlerPHP.php
parent85e859a0d99382fcff7477d06959dea3e43e75da (diff)
downloadsimplesamlphp-eceef567844288172e8916960d7dcd6fb178d353.zip
simplesamlphp-eceef567844288172e8916960d7dcd6fb178d353.tar.gz
simplesamlphp-eceef567844288172e8916960d7dcd6fb178d353.tar.bz2
SessionHandler: Rename getSessionId to getCookieSessionId.
git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@2494 44740490-163a-0410-bde0-09ae8108e29a
Diffstat (limited to 'lib/SimpleSAML/SessionHandlerPHP.php')
-rw-r--r--lib/SimpleSAML/SessionHandlerPHP.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/SimpleSAML/SessionHandlerPHP.php b/lib/SimpleSAML/SessionHandlerPHP.php
index 37b12d4..f2009bd 100644
--- a/lib/SimpleSAML/SessionHandlerPHP.php
+++ b/lib/SimpleSAML/SessionHandlerPHP.php
@@ -65,12 +65,12 @@ class SimpleSAML_SessionHandlerPHP extends SimpleSAML_SessionHandler {
}
- /* This function retrieves the session id of the current session.
+ /**
+ * Retrieve the session id of saved in the session cookie.
*
- * Returns:
- * The session id of the current session.
+ * @return string The session id saved in the cookie.
*/
- public function getSessionId() {
+ public function getCookieSessionId() {
return session_id();
}