|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-03-10 13:23 UTC] sniper@php.net
[2004-03-10 13:31 UTC] whelan at nexserver dot com
[2004-03-10 13:35 UTC] derick@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Dec 10 07:00:01 2025 UTC |
Description: ------------ if it contains a space, you get a new session_id on every page calling session_start(). I believe php should either fail and return an error or compensate for the space. It shouldn't just not work correctly. Reproduce code: --------------- session_name('New Session'); session_start(); Expected result: ---------------- It should maintain the same session id for each session with the same session name. Actual result: -------------- It will create a new session id for each time this is called.