summaryrefslogtreecommitdiff
path: root/auto_prepend.php
diff options
context:
space:
mode:
authorChristian Schneider2007-11-11 14:17:44 +0000
committerChristian Schneider2007-11-11 14:17:44 +0000
commite55d5bb64688961813d47812ff642cdbffb10375 (patch)
tree9ece37333848df5cc1f996a73d956ec17a1cfe25 /auto_prepend.php
parent943742dad742cad540d30e7723de1eef43b713fc (diff)
downloaditools-e55d5bb64688961813d47812ff642cdbffb10375.tar.gz
itools-e55d5bb64688961813d47812ff642cdbffb10375.tar.bz2
itools-e55d5bb64688961813d47812ff642cdbffb10375.zip
Changed it_untaint and it_taintcheck to not modify input var
Diffstat (limited to 'auto_prepend.php')
-rw-r--r--auto_prepend.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/auto_prepend.php b/auto_prepend.php
index 0b8bb68..7500061 100644
--- a/auto_prepend.php
+++ b/auto_prepend.php
@@ -154,8 +154,8 @@ function db_version()
*/
if (function_exists("taint"))
{
- function it_untaint(&$value, $marks = TC_HTML) { untaint($value, $marks); return $value; }
- function it_taintcheck(&$value, $marks = TC_HTML) { if (istainted($value) & $marks) { untaint($value, $marks); it::error("it_taintcheck($value, $marks) failed"); } return $value; }
+ function it_untaint($value, $marks = TC_HTML) { untaint($value, $marks); return $value; }
+ function it_taintcheck($value, $marks = TC_HTML) { if (istainted($value) & $marks) { untaint($value, $marks); it::error(it_untaint("it_taintcheck($value, $marks) failed")); } return $value; }
}
else
{
@@ -166,8 +166,8 @@ else
define('TC_SELF', 0);
define('TC_ALL', 0);
define('TC_NONE', 0);
- function it_untaint(&$value, $marks = 0) { return $value; }
- function it_taintcheck(&$value, $marks = 0) { return $value; }
+ function it_untaint($value, $marks = 0) { return $value; }
+ function it_taintcheck($value, $marks = 0) { return $value; }
}
?>