mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00
missed semicolon in example
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@341832 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
bebcec9d1f
commit
d80a97dfbe
1 changed files with 1 additions and 1 deletions
|
@ -193,7 +193,7 @@ function my_session_start() {
|
|||
function my_session_regenerate_id() {
|
||||
// New session ID is required to set proper session ID
|
||||
// when session ID is not set due to unstable network.
|
||||
$new_session_id = session_create_id()
|
||||
$new_session_id = session_create_id();
|
||||
$_SESSION['new_session_id'] = $new_session_id;
|
||||
|
||||
// Set destroy timestamp
|
||||
|
|
Loading…
Reference in a new issue