From 00528a7396dddeb50d86a246b195b1848f2803da Mon Sep 17 00:00:00 2001 From: Jamin Blount Date: Sun, 5 Feb 2017 11:11:41 -0600 Subject: [PATCH] v1.1.10b ### 1.1.10b (10.25.2005) ### - Fixed addslashes_deep() to actually add slashes, instead of strip them. Man, I'm dumb. --- lib.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib.php b/lib.php index e487baa..888d95b 100644 --- a/lib.php +++ b/lib.php @@ -2,7 +2,7 @@ $starttime = getmicrotime(); $numqueries = 0; -$version = "1.1.10a"; +$version = "1.1.10b"; $build = ""; // Handling for servers with magic_quotes turned on. @@ -31,7 +31,7 @@ function addslashes_deep($value) { $value = is_array($value) ? array_map('addslashes_deep', $value) : - stripslashes($value); + addslashes($value); return $value; }