summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKalle Sommer Nielsen <kalle@php.net>2008-10-26 15:38:47 +0000
committerKalle Sommer Nielsen <kalle@php.net>2008-10-26 15:38:47 +0000
commita6a68ba7589c7fa10958d6dcf604a1972257ba36 (patch)
tree7718a2aa18f6ebb4fd7102b667d7a8be96ba8f04
parent8bd294387723d8e199a32aac8fa42f6e9e550a7e (diff)
downloadphp-git-a6a68ba7589c7fa10958d6dcf604a1972257ba36.tar.gz
Fixed #44748 (php.ini comments on magic_quotes_gpc promote bad practices)
-rw-r--r--php.ini-recommended3
1 files changed, 2 insertions, 1 deletions
diff --git a/php.ini-recommended b/php.ini-recommended
index b772531ef9..cbe02a522d 100644
--- a/php.ini-recommended
+++ b/php.ini-recommended
@@ -95,7 +95,8 @@
; - magic_quotes_gpc = Off [Performance]
; Input data is no longer escaped with slashes so that it can be sent into
; SQL databases without further manipulation. Instead, you should use the
-; function addslashes() on each input element you wish to send to a database.
+; database vendor specific escape string function on each input element you
+; wish to send to a database.
; - variables_order = "GPCS" [Performance]
; The environment variables are not hashed into the $_ENV. To access
; environment variables, you can use getenv() instead.