summaryrefslogtreecommitdiff
path: root/php.ini-development
diff options
context:
space:
mode:
authorChristoph M. Becker <cmbecker69@gmx.de>2020-03-15 15:02:10 +0100
committerChristoph M. Becker <cmbecker69@gmx.de>2020-03-15 15:02:10 +0100
commit4c0ddd094ae359996aa3d2a915b212af081a9b4e (patch)
treef09d43c74da505405055ffde847be3b7adaff799 /php.ini-development
parent9a8f735c576a888e0c23425f9e198ef39821de69 (diff)
parentb48c05a982cf79de59190f6de26b9e868a7330aa (diff)
downloadphp-git-4c0ddd094ae359996aa3d2a915b212af081a9b4e.tar.gz
Merge branch 'PHP-7.4'
* PHP-7.4: Fix typo in php.ini comment
Diffstat (limited to 'php.ini-development')
-rw-r--r--php.ini-development4
1 files changed, 2 insertions, 2 deletions
diff --git a/php.ini-development b/php.ini-development
index b6e1fac5f4..3135934dfd 100644
--- a/php.ini-development
+++ b/php.ini-development
@@ -1412,8 +1412,8 @@ session.gc_maxlifetime = 1440
; (see session.save_path above), then garbage collection does *not*
; happen automatically. You will need to do your own garbage
; 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):
+; For example, the following script is the equivalent of setting
+; session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):
; find /path/to/sessions -cmin +24 -type f | xargs rm
; Check HTTP Referer to invalidate externally stored URLs containing ids.