summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--php.ini-development2
-rw-r--r--php.ini-production2
2 files changed, 3 insertions, 1 deletions
diff --git a/php.ini-development b/php.ini-development
index 54006830a2..65532be9e2 100644
--- a/php.ini-development
+++ b/php.ini-development
@@ -371,6 +371,8 @@ zend.enable_gc = On
;zend.script_encoding =
; Allows to include or exclude arguments from stack traces generated for exceptions.
+; In production, it is recommended to turn this setting on to prohibit the output
+; of sensitive information in stack traces
; Default Value: Off
; Development Value: Off
; Production Value: On
diff --git a/php.ini-production b/php.ini-production
index 47a5c5e13b..472a87eab0 100644
--- a/php.ini-production
+++ b/php.ini-production
@@ -370,7 +370,7 @@ zend.enable_gc = On
; Only affects if zend.multibyte is set.
;zend.script_encoding =
-; Allows to include or exclude arguments from stack traces generated for exceptions
+; Allows to include or exclude arguments from stack traces generated for exceptions.
; In production, it is recommended to turn this setting on to prohibit the output
; of sensitive information in stack traces
; Default Value: Off