From: Michael M Slusarz Date: Thu, 3 Dec 2009 21:30:14 +0000 (-0700) Subject: Revert "This needs to be a string." X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=02d27500866c09b172b4753ea3bf6597c7d81dd3;p=horde.git Revert "This needs to be a string." This reverts commit 1c8eaff249d41c3cdcfac9595a0a94fda887dcd0. Correct phpdoc return value. --- diff --git a/framework/Core/lib/Horde.php b/framework/Core/lib/Horde.php index 6bdb01f44..38230de20 100644 --- a/framework/Core/lib/Horde.php +++ b/framework/Core/lib/Horde.php @@ -1102,7 +1102,7 @@ HTML; * @param integer $append_session 0 = only if needed, 1 = always, -1 = * never. * - * @return string The url with the session id appended. + * @return Horde_Url The url with the session id appended. */ static public function applicationUrl($uri, $full = false, $append_session = 0) @@ -1119,7 +1119,7 @@ HTML; $uri = $webroot . $uri; } - return (string) self::url($uri, $full, $append_session); + return self::url($uri, $full, $append_session); } /**