diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2007-09-10 23:42:54 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2007-09-10 23:42:54 +0000 |
commit | ea6de20d8609ddaf40e4f69fa75aa3597e00d426 (patch) | |
tree | f29cef00c183da37c336b0235207c8b274e396ea | |
parent | 96810f0ae60289b876ffbe8c39680910d6e82b1e (diff) | |
download | php-git-ea6de20d8609ddaf40e4f69fa75aa3597e00d426.tar.gz |
Fixed Bug #42596 (session.save_path MODE option does not work).
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | ext/session/mod_files.c | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -12,6 +12,7 @@ PHP NEWS - Upgraded PCRE to version 7.3 (Nuno) - Added optional parameter $provide_object to debug_backtrace(). (Sebastian) +- Fixed Bug #42596 (session.save_path MODE option does not work). (Ilia) - Fixed bug #42590 (Make the engine recornize \v and \f escape sequences). (Ilia) - Fixed bug #42587 (behaviour change regarding symlinked .php files). (Dmitry) diff --git a/ext/session/mod_files.c b/ext/session/mod_files.c index 771280146d..04396ebe23 100644 --- a/ext/session/mod_files.c +++ b/ext/session/mod_files.c @@ -295,7 +295,7 @@ PS_OPEN_FUNC(files) argv[argc++] = last; last = ++p; p = strchr(p, ';'); - if (argc > 1) break; + if (argc > 2) break; } argv[argc++] = last; |