diff options
author | Kalle Sommer Nielsen <kalle@php.net> | 2008-10-26 15:38:47 +0000 |
---|---|---|
committer | Kalle Sommer Nielsen <kalle@php.net> | 2008-10-26 15:38:47 +0000 |
commit | a6a68ba7589c7fa10958d6dcf604a1972257ba36 (patch) | |
tree | 7718a2aa18f6ebb4fd7102b667d7a8be96ba8f04 | |
parent | 8bd294387723d8e199a32aac8fa42f6e9e550a7e (diff) | |
download | php-git-a6a68ba7589c7fa10958d6dcf604a1972257ba36.tar.gz |
Fixed #44748 (php.ini comments on magic_quotes_gpc promote bad practices)
-rw-r--r-- | php.ini-recommended | 3 |
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. |