From 303d4e7914a667b599c60a49905cedf13534221a Mon Sep 17 00:00:00 2001 From: Adam Harvey Date: Mon, 10 Sep 2012 02:16:51 +0000 Subject: [PATCH] Fix the second parameter of SessionHandlerInterface::open(), which is the session name, not the session ID. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@327574 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/session/sessionhandlerinterface/open.xml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/reference/session/sessionhandlerinterface/open.xml b/reference/session/sessionhandlerinterface/open.xml index 8cb5f903cc..830d1e2e47 100644 --- a/reference/session/sessionhandlerinterface/open.xml +++ b/reference/session/sessionhandlerinterface/open.xml @@ -12,7 +12,7 @@ abstract public boolSessionHandlerInterface::open stringsave_path - stringsession_id + stringname Re-initialize existing session, or creates a new one. Called when a session starts or when @@ -32,10 +32,10 @@ - session_id + name - The session id. + The session name. @@ -53,6 +53,7 @@ &reftitle.seealso; + session_name The session.auto-start configuration directive.