From 755261fe6a6984127bfc2432a3c1b8672f6c72ea Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Wed, 23 May 2007 18:04:05 +0000 Subject: [PATCH] "fixed possible dublicated session-id of our own session-id creation function, by using the php one" --- phpgwapi/inc/class.sessions_php4.inc.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/phpgwapi/inc/class.sessions_php4.inc.php b/phpgwapi/inc/class.sessions_php4.inc.php index 4fa7597083..fc0529ee43 100644 --- a/phpgwapi/inc/class.sessions_php4.inc.php +++ b/phpgwapi/inc/class.sessions_php4.inc.php @@ -68,13 +68,12 @@ /** * Create a new session id, called by session::create() * - * Reimplemented to tell the php-sessions to use the id + * Reimplemented to use php session-id * * @return string a new session id */ function new_session_id() { - session_id(parent::new_session_id()); session_start(); return session_id();