From 32be6f268b59eed7ec5f1bcfd0a88e112a50dd85 Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Mon, 29 Mar 2004 21:44:07 +0000 Subject: Fix for Bug #26757: session.save_path defaults to bogus value on win32 Merge from branch with one main difference: the default save_path is set to the empty string on all platforms, whereas the code in the branch only does so for win32. --- php.ini-recommended | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'php.ini-recommended') diff --git a/php.ini-recommended b/php.ini-recommended index 9584d54d85..7c6401f159 100644 --- a/php.ini-recommended +++ b/php.ini-recommended @@ -882,7 +882,7 @@ session.save_handler = files ; ; where MODE is the octal representation of the mode. Note that this ; does not overwrite the process's umask. -session.save_path = "/tmp" +;session.save_path = "/tmp" ; Whether to use cookies. session.use_cookies = 1 -- cgit v1.2.1