summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2007-09-10 23:42:54 +0000
committerIlia Alshanetsky <iliaa@php.net>2007-09-10 23:42:54 +0000
commitea6de20d8609ddaf40e4f69fa75aa3597e00d426 (patch)
treef29cef00c183da37c336b0235207c8b274e396ea
parent96810f0ae60289b876ffbe8c39680910d6e82b1e (diff)
downloadphp-git-ea6de20d8609ddaf40e4f69fa75aa3597e00d426.tar.gz
Fixed Bug #42596 (session.save_path MODE option does not work).
-rw-r--r--NEWS1
-rw-r--r--ext/session/mod_files.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 81835b104e..984e92e253 100644
--- a/NEWS
+++ b/NEWS
@@ -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;