From 7faf249910a8fd898e887b97b240a000447fb647 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sat, 27 Aug 2005 08:58:59 +0000 Subject: [PATCH] Need to add 1 char to the $url[0] bit in fetch_arguments() --- includes/paths.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/paths.php b/includes/paths.php index 3d0e418..92ac110 100644 --- a/includes/paths.php +++ b/includes/paths.php @@ -93,7 +93,7 @@ class Paths if (($pos = strpos($url, '?')) !== false) { - $return[0] = substr($url, 0, strlen($url) - $pos); + $return[0] = substr($url, 0, strlen($url) - $pos + 1); $return[1] = substr($url, $pos + 1); } else -- 2.22.5