Make sure this always returns a string (URL could be completely empty)
authorMichael M Slusarz <slusarz@curecanti.org>
Fri, 30 Jul 2010 08:19:59 +0000 (02:19 -0600)
committerMichael M Slusarz <slusarz@curecanti.org>
Fri, 30 Jul 2010 08:54:10 +0000 (02:54 -0600)
framework/Url/lib/Horde/Url.php

index 8b2d8d5..84640fe 100644 (file)
@@ -255,7 +255,7 @@ class Horde_Url
             $url .= '#' . rawurlencode($this->anchor);
         }
 
-        return $url;
+        return strval($url);
     }
 
     /**