Skip to content

Commit 0a7c888

Browse files
author
Yasuo Ohgaki
committed
Merge branch 'PHP-5.5'
* PHP-5.5: Improve php.ini-* documentation
2 parents 2a13fb1 + d669251 commit 0a7c888

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

php.ini-development

+1-1
Original file line numberDiff line numberDiff line change
@@ -1480,7 +1480,7 @@ session.gc_maxlifetime = 1440
14801480
; collection through a shell script, cron entry, or some other method.
14811481
; For example, the following script would is the equivalent of
14821482
; setting session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):
1483-
; find /path/to/sessions -cmin +24 | xargs rm
1483+
; find /path/to/sessions -cmin +24 -type f | xargs rm
14841484

14851485
; PHP 4.2 and less have an undocumented feature/bug that allows you to
14861486
; to initialize a session variable in the global scope.

php.ini-production

+1-1
Original file line numberDiff line numberDiff line change
@@ -1481,7 +1481,7 @@ session.gc_maxlifetime = 1440
14811481
; collection through a shell script, cron entry, or some other method.
14821482
; For example, the following script would is the equivalent of
14831483
; setting session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):
1484-
; find /path/to/sessions -cmin +24 | xargs rm
1484+
; find /path/to/sessions -cmin +24 -type f | xargs rm
14851485

14861486
; PHP 4.2 and less have an undocumented feature/bug that allows you to
14871487
; to initialize a session variable in the global scope.

0 commit comments

Comments
 (0)