diff options
-rw-r--r-- | auto_prepend.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/auto_prepend.php b/auto_prepend.php index 2d49b33..0b8bb68 100644 --- a/auto_prepend.php +++ b/auto_prepend.php @@ -159,13 +159,13 @@ if (function_exists("taint")) } else { - defined('TC_HTML', 0); - defined('TC_SHELL', 0); - defined('TC_MYSQL', 0); - defined('TC_MYSQLI', 0); - defined('TC_SELF', 0); - defined('TC_ALL', 0); - defined('TC_NONE', 0); + define('TC_HTML', 0); + define('TC_SHELL', 0); + define('TC_MYSQL', 0); + define('TC_MYSQLI', 0); + 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; } } |