From 02d27500866c09b172b4753ea3bf6597c7d81dd3 Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Thu, 3 Dec 2009 14:30:14 -0700 Subject: [PATCH] Revert "This needs to be a string." This reverts commit 1c8eaff249d41c3cdcfac9595a0a94fda887dcd0. Correct phpdoc return value. --- framework/Core/lib/Horde.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } /** -- 2.11.0