1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 20:55:55 +00:00

disable magic quotes if needed

This commit is contained in:
Andrew Dolgov
2007-05-19 14:47:37 +01:00
parent 5a6c21c71a
commit ce885e215e

View File

@@ -1,6 +1,15 @@
<?php
error_reporting(E_ERROR | E_WARNING | E_PARSE);
/* remove ill effects of magic quotes */
if (get_magic_quotes_gpc()) {
$_GET = array_map('stripslashes', $_GET);
$_POST = array_map('stripslashes', $_POST);
$_REQUEST = array_map('stripslashes', $_REQUEST);
$_COOKIE = array_map('stripslashes', $_COOKIE);
}
require_once "sessions.php";
require_once "modules/backend-rpc.php";