diff options
| author | Wez Furlong <wez@php.net> | 2004-03-29 21:44:07 +0000 |
|---|---|---|
| committer | Wez Furlong <wez@php.net> | 2004-03-29 21:44:07 +0000 |
| commit | 32be6f268b59eed7ec5f1bcfd0a88e112a50dd85 (patch) | |
| tree | d0563b087c985c809a33a89b2e695d7c24643578 /php.ini-dist | |
| parent | 904dac52e2f1445899598d727c7fb511defb9d10 (diff) | |
| download | php-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-dist')
| -rw-r--r-- | php.ini-dist | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/php.ini-dist b/php.ini-dist index 41d86659b2..e98064e45c 100644 --- a/php.ini-dist +++ b/php.ini-dist @@ -860,7 +860,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 |
