From 1ee80a53fa2e4ef3aff1906ac41214d4c4e56039 Mon Sep 17 00:00:00 2001 From: "Michael J. Rubinsky" Date: Sun, 9 May 2010 16:56:55 -0400 Subject: [PATCH] reversed logic --- framework/Url/lib/Horde/Url.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/Url/lib/Horde/Url.php b/framework/Url/lib/Horde/Url.php index 6f874f270..d2dfc0b0c 100644 --- a/framework/Url/lib/Horde/Url.php +++ b/framework/Url/lib/Horde/Url.php @@ -69,7 +69,7 @@ class Horde_Url $this->url = $url->url; $this->parameters = $url->parameters; $this->pathInfo = $url->pathInfo; - if (is_null($raw)) { + if (!is_null($raw)) { $this->raw = $url->raw; } return; -- 2.11.0