123456789101112131415161718192021 |
- --TEST--
- Bug #74833 Session module number is uninitialized when SID is reset
- --EXTENSIONS--
- session
- --SKIPIF--
- <?php include('skipif.inc'); ?>
- --FILE--
- <?php
- ob_start();
- session_start();
- session_regenerate_id();
- $c = get_defined_constants(true);
- /* Ensure the SID constant has correct module number. */
- var_dump(isset($c['session']['SID']));
- ob_end_flush();
- ?>
- --EXPECT--
- bool(true)
|