From f44634b67d61c9d04e46695cfd17ac8268d6fbad Mon Sep 17 00:00:00 2001 From: Shish Date: Sun, 2 Aug 2009 09:10:28 +0100 Subject: [PATCH] update this too --- core/util.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/util.inc.php b/core/util.inc.php index d59be3c4..12b6b8b9 100644 --- a/core/util.inc.php +++ b/core/util.inc.php @@ -622,7 +622,7 @@ function print_GET() { /** @privatesection */ function _stripslashes_r($arr) { - return is_array($arr) ? array_map('stripslashes_r', $arr) : stripslashes($arr); + return is_array($arr) ? array_map('_stripslashes_r', $arr) : stripslashes($arr); } function _sanitise_environment() {