Skip to content

Commit

Permalink
Removing automatic setting of url_rewriter.tags Session config
Browse files Browse the repository at this point in the history
This is legacy from PHP 4 as session transmitted over the URL is
highly discouraged.
  • Loading branch information
lorenzo committed Jan 3, 2015
1 parent 17eaaf6 commit 69f2e3b
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/Network/Session.php
Expand Up @@ -136,7 +136,6 @@ protected static function _defaultConfig($name)
'cookie' => 'CAKEPHP',
'ini' => [
'session.use_trans_sid' => 0,
'url_rewriter.tags' => '',
'session.serialize_handler' => 'php',
'session.use_cookies' => 1,
'session.save_path' => TMP . 'sessions',
Expand All @@ -147,7 +146,6 @@ protected static function _defaultConfig($name)
'cookie' => 'CAKEPHP',
'ini' => [
'session.use_trans_sid' => 0,
'url_rewriter.tags' => '',
'session.use_cookies' => 1,
'session.save_handler' => 'user',
],
Expand All @@ -160,7 +158,6 @@ protected static function _defaultConfig($name)
'cookie' => 'CAKEPHP',
'ini' => [
'session.use_trans_sid' => 0,
'url_rewriter.tags' => '',
'session.use_cookies' => 1,
'session.save_handler' => 'user',
'session.serialize_handler' => 'php',
Expand Down

0 comments on commit 69f2e3b

Please sign in to comment.