From e362e8beb12b18b2ef1988770128fbdaec9e265d Mon Sep 17 00:00:00 2001 From: Stephan Poehlsen Date: Wed, 23 Nov 2005 02:25:01 +0000 Subject: erste Version vom Webinterface git-svn-id: file:///home/lennart/svn/public/sse/trunk@34 5fbabb74-0606-0410-a5e4-b5cc6a42724e --- www/_main.inc.php | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 www/_main.inc.php (limited to 'www/_main.inc.php') diff --git a/www/_main.inc.php b/www/_main.inc.php new file mode 100644 index 0000000..9068d69 --- /dev/null +++ b/www/_main.inc.php @@ -0,0 +1,33 @@ + $v) { + $n[stripslashes($k)] = stripslashes_deep($v); + } + return $n; +} + +if (get_magic_quotes_gpc()) { + $_REQUEST = array_map('stripslashes_deep', $_REQUEST); + $_POST = array_map('stripslashes_deep', $_POST); + $_GET = array_map('stripslashes_deep', $_GET); + $_COOKIE = array_map('stripslashes_deep', $_COOKIE); +} + +$num_default = 25; + +?> \ No newline at end of file -- cgit