diff options
author | Yasuo Ohgaki <yohgaki@php.net> | 2015-02-03 12:26:25 +0900 |
---|---|---|
committer | Yasuo Ohgaki <yohgaki@php.net> | 2015-02-03 12:26:25 +0900 |
commit | 665997bf169a943b5a06e1cb1c53511aac93d126 (patch) | |
tree | e71ff0c2e123fe8b2c84af624c94b66f878f5825 /ext/session | |
parent | f86600c1676508876a510ee95ed581e52b09e400 (diff) | |
parent | 17beba686e69a6f0dae9db9548582c34df81ceef (diff) | |
download | php-git-665997bf169a943b5a06e1cb1c53511aac93d126.tar.gz |
Merge branch 'PHP-5.5' into PHP-5.6
* PHP-5.5:
Bug #61470 is fixed only in master
Diffstat (limited to 'ext/session')
-rw-r--r-- | ext/session/tests/bug61470.phpt | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/ext/session/tests/bug61470.phpt b/ext/session/tests/bug61470.phpt deleted file mode 100644 index 3dc068b673..0000000000 --- a/ext/session/tests/bug61470.phpt +++ /dev/null @@ -1,21 +0,0 @@ ---TEST-- -Bug #61470 (session_regenerate_id() does not create session file) ---SKIPIF-- -<?php include('skipif.inc'); ?> ---INI-- ---FILE-- -<?php -$path = ini_get('session.save_path') . '/sess_'; - -ob_start(); -session_start(); -// starts session & creates and locks file -var_dump(is_file($path . session_id())); - -session_regenerate_id(); -// starts new session, but file is not create! -var_dump(is_file($path . session_id())); ---EXPECT-- -bool(true); -bool(true); - |