summaryrefslogtreecommitdiff
path: root/inc/secure.php
diff options
context:
space:
mode:
authorcookie <cookie@29ba0400-6e00-0410-a75a-ca02368028f8>2005-10-21 18:50:26 +0000
committercookie <cookie@29ba0400-6e00-0410-a75a-ca02368028f8>2005-10-21 18:50:26 +0000
commit50c5e06f099927d916bad4c35122a309a30f5a49 (patch)
treec025fbd072ecda103bb0cc4ca9840a0d7589a8a2 /inc/secure.php
parentc912c19f8e2f56749aa02cfca8e837061e5196b5 (diff)
debug modus fuer session daten erweitert
bugfix: problem mit lokalen variabeln und uebergaben git-svn-id: svn://svn.cccv.de/engel-system@10 29ba0400-6e00-0410-a75a-ca02368028f8
Diffstat (limited to 'inc/secure.php')
-rwxr-xr-xinc/secure.php11
1 files changed, 2 insertions, 9 deletions
diff --git a/inc/secure.php b/inc/secure.php
index 99d646d2..32c8f864 100755
--- a/inc/secure.php
+++ b/inc/secure.php
@@ -5,33 +5,26 @@
foreach ($_GET as $k => $v)
{
$v = htmlspecialchars($v);
-//echo "$v<br>";
$v = mysql_escape_string($v);
-//echo "$v<br>";
// $v = htmlentities($v);
-//echo "$v<br>";
-// if (preg_match('/([\'"`\'])/', $v, $match))
if (preg_match('/([\"`])/', $v, $match))
{
print "sorry get has illegal char '$match[1]'";
exit;
}
- $$k = $v;
+ $_GET[$k] = $v;
}
foreach ($_POST as $k => $v)
{
$v = htmlspecialchars($v);
-//echo "$v<br>";
$v = mysql_escape_string($v);
-//echo "$v<br>";
// $v = htmlentities($v);
-//echo "$v<br>";
if (preg_match('/([\'"`\'])/', $v, $match)) {
print "sorry post has illegal char '$match[1]'";
exit;
}
- $$k = $v;
+ $_POST[$k] = $v;
}
?>