diff options
author | Olav Morken <olav.morken@uninett.no> | 2010-08-09 08:51:38 +0000 |
---|---|---|
committer | Olav Morken <olav.morken@uninett.no> | 2010-08-09 08:51:38 +0000 |
commit | eceef567844288172e8916960d7dcd6fb178d353 (patch) | |
tree | 54822f6ade00c2859037ee05834e06f44b9f4a00 /lib/SimpleSAML/SessionHandlerPHP.php | |
parent | 85e859a0d99382fcff7477d06959dea3e43e75da (diff) | |
download | simplesamlphp-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.php | 8 |
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(); } |