Skip to content

Commit

Permalink
fixed bug #7784 'sessionSharing' is disabled by default
Browse files Browse the repository at this point in the history
because Auth::start() changes session id, and the security problem.


git-svn-id: https://svn.php.net/repository/pear/packages/Auth_HTTP/trunk@220868 c90b9560-bf6c-de11-be94-00142212c4b1
  • Loading branch information
Rui Hirokawa committed Oct 1, 2006
1 parent cadac1c commit 7e0f82a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Auth_HTTP.php
Expand Up @@ -181,7 +181,7 @@ function Auth_HTTP($storageDriver, $options = '')
'digestRealm' => 'protected area',
'forceDigestOnly' => false,
'nonceLife' => 300,
'sessionSharing' => true,
'sessionSharing' => false,
);

if (!empty($options['authType'])) {
Expand Down

0 comments on commit 7e0f82a

Please sign in to comment.