get_magic_quotes_gpc() was deprecrated as of PHP 7.4
This commit is contained in:
parent
f29e200b96
commit
d1dae60f05
@ -297,7 +297,7 @@ if ($app['language'] == 'auto') {
|
|||||||
* Strip slashes from GET, POST, and COOKIE variables if this
|
* Strip slashes from GET, POST, and COOKIE variables if this
|
||||||
* PHP install is configured to automatically addslashes()
|
* PHP install is configured to automatically addslashes()
|
||||||
*/
|
*/
|
||||||
if (@get_magic_quotes_gpc() && (! isset($slashes_stripped) || ! $slashes_stripped)) {
|
if ((! isset($slashes_stripped) || ! $slashes_stripped)) {
|
||||||
array_stripslashes($_REQUEST);
|
array_stripslashes($_REQUEST);
|
||||||
array_stripslashes($_GET);
|
array_stripslashes($_GET);
|
||||||
array_stripslashes($_POST);
|
array_stripslashes($_POST);
|
||||||
|
Loading…
Reference in New Issue
Block a user