projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
03e8258
)
Cast to string.
author
Jan Schneider
<jan@horde.org>
Thu, 3 Dec 2009 20:35:09 +0000
(21:35 +0100)
committer
Jan Schneider
<jan@horde.org>
Thu, 3 Dec 2009 20:35:20 +0000
(21:35 +0100)
framework/Core/lib/Horde.php
patch
|
blob
|
history
diff --git
a/framework/Core/lib/Horde.php
b/framework/Core/lib/Horde.php
index
c7f8d34
..
6bdb01f
100644
(file)
--- a/
framework/Core/lib/Horde.php
+++ b/
framework/Core/lib/Horde.php
@@
-2239,7
+2239,7
@@
HTML;
$params = new stdClass;
$pos = strpos($url, '?');
if ($pos === false) {
- $params->url = $url;
+ $params->url =
(string)
$url;
} else {
$params->url = substr($url, 0, $pos);
parse_str(substr($url, $pos + 1), $parsed);