Commit:    445dffa75a1ffdbcf03670781c48fa4f88ce2ce9
Author:    Yasuo Ohgaki <yohg...@php.net>         Thu, 18 Jul 2013 14:08:28 
+0900
Parents:   b9e3f737d95ba1d6e8e3e3ec4af6d5624dc50234
Branches:  master

Link:       
http://git.php.net/?p=php-src.git;a=commitdiff;h=445dffa75a1ffdbcf03670781c48fa4f88ce2ce9

Log:
Improve php.ini-* documentation

Changed paths:
  M  php.ini-development
  M  php.ini-production


Diff:
diff --git a/php.ini-development b/php.ini-development
index aee8b48..28eb9ed 100644
--- a/php.ini-development
+++ b/php.ini-development
@@ -1474,7 +1474,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):
-;          find /path/to/sessions -cmin +24 | xargs rm
+;          find /path/to/sessions -cmin +24 -type f | 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.
diff --git a/php.ini-production b/php.ini-production
index 2df1264..46b06ee 100644
--- a/php.ini-production
+++ b/php.ini-production
@@ -1474,7 +1474,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):
-;          find /path/to/sessions -cmin +24 | xargs rm
+;          find /path/to/sessions -cmin +24 -type f | 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.


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to