projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3754806
)
Make sure we're returning a string in __toString
author
Chuck Hagenbuch
<chuck@horde.org>
Fri, 19 Nov 2010 18:07:09 +0000
(13:07 -0500)
committer
Chuck Hagenbuch
<chuck@horde.org>
Fri, 19 Nov 2010 18:07:09 +0000
(13:07 -0500)
framework/Core/lib/Horde/Themes/Element.php
patch
|
blob
|
history
diff --git
a/framework/Core/lib/Horde/Themes/Element.php
b/framework/Core/lib/Horde/Themes/Element.php
index
0b32934
..
c087e62
100644
(file)
--- a/
framework/Core/lib/Horde/Themes/Element.php
+++ b/
framework/Core/lib/Horde/Themes/Element.php
@@
-90,7
+90,7
@@
class Horde_Themes_Element
*/
public function __toString()
{
- return $this->uri;
+ return
(string)
$this->uri;
}
/**