summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--php.ini-development2
-rw-r--r--php.ini-production2
2 files changed, 2 insertions, 2 deletions
diff --git a/php.ini-development b/php.ini-development
index e682f447ec..ab4b89a7b7 100644
--- a/php.ini-development
+++ b/php.ini-development
@@ -1547,7 +1547,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
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