diff options
author | Adam Harvey <aharvey@php.net> | 2010-10-18 02:10:29 +0000 |
---|---|---|
committer | Adam Harvey <aharvey@php.net> | 2010-10-18 02:10:29 +0000 |
commit | 6a289f4d108e2b9693687a2d60520cb6521445d3 (patch) | |
tree | 5b8f02ebcb6dcdd3923ea53fd1dcf13238e9e311 /php.ini-production | |
parent | 946f95c0fc74cae4843f36f77e701e9e19911da9 (diff) | |
download | php-git-6a289f4d108e2b9693687a2d60520cb6521445d3.tar.gz |
Fix bug #53089 (php.ini should use portable example of find) by using POSIX
compliant syntax in the suggested find command for cleaning up session files in
the shipped php.ini files.
Diffstat (limited to 'php.ini-production')
-rw-r--r-- | php.ini-production | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/php.ini-production b/php.ini-production index 773191a16b..e0480a59d3 100644 --- a/php.ini-production +++ b/php.ini-production @@ -1555,7 +1555,7 @@ session.gc_maxlifetime = 1440 ; collection through a shell script, cron entry, or some other method. ; For example, the following script would is the equivalent of ; setting session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes): -; cd /path/to/sessions; find -cmin +24 | xargs rm +; find /path/to/sessions -cmin +24 | xargs rm ; PHP 4.2 and less have an undocumented feature/bug that allows you to ; to initialize a session variable in the global scope, even when register_globals |