Skip to content

Commit d669251

Browse files
author
Yasuo Ohgaki
committed
Merge branch 'PHP-5.4' into PHP-5.5
* PHP-5.4: Improve php.ini-* documentation
2 parents fec9399 + 445dffa commit d669251

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

php.ini-development

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

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

php.ini-production

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

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

0 commit comments

Comments
 (0)