summaryrefslogtreecommitdiff
path: root/php.ini-recommended
diff options
context:
space:
mode:
authorWez Furlong <wez@php.net>2004-03-29 21:44:07 +0000
committerWez Furlong <wez@php.net>2004-03-29 21:44:07 +0000
commit32be6f268b59eed7ec5f1bcfd0a88e112a50dd85 (patch)
treed0563b087c985c809a33a89b2e695d7c24643578 /php.ini-recommended
parent904dac52e2f1445899598d727c7fb511defb9d10 (diff)
downloadphp-git-32be6f268b59eed7ec5f1bcfd0a88e112a50dd85.tar.gz
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.
Diffstat (limited to 'php.ini-recommended')
-rw-r--r--php.ini-recommended2
1 files changed, 1 insertions, 1 deletions
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