From ea6de20d8609ddaf40e4f69fa75aa3597e00d426 Mon Sep 17 00:00:00 2001 From: Ilia Alshanetsky Date: Mon, 10 Sep 2007 23:42:54 +0000 Subject: [PATCH] Fixed Bug #42596 (session.save_path MODE option does not work). --- NEWS | 1 + ext/session/mod_files.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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; -- 2.40.0