From: Michael J. Rubinsky Date: Thu, 11 Mar 2010 23:47:22 +0000 (-0500) Subject: Cast Horde_Url to string here X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=c9a20366ed4675409624989522efcd5a2cc521f7;p=horde.git Cast Horde_Url to string here --- diff --git a/framework/Ui/lib/Horde/Ui/VarRenderer/Html.php b/framework/Ui/lib/Horde/Ui/VarRenderer/Html.php index 51d0bf371..8d8dba48b 100644 --- a/framework/Ui/lib/Horde/Ui/VarRenderer/Html.php +++ b/framework/Ui/lib/Horde/Ui/VarRenderer/Html.php @@ -1132,7 +1132,7 @@ EOT; 'p' => $image['img']['vfs_path'])); } else { /* Calling an image from a tmp directory (uploads). */ - $img = Horde_Util::addParameter($img, 'f', $image['img']['file']); + $img = (string)Horde_Util::addParameter($img, 'f', $image['img']['file']); } return Horde::img($img, '', '', '');