From df1c8a6d28a2e9c813f16de6d0bd75ba644d8471 Mon Sep 17 00:00:00 2001 From: "Michael J. Rubinsky" Date: Tue, 28 Jul 2009 20:57:45 -0400 Subject: [PATCH] Need ability to request a full URL here since some of these imples may be on an external site. --- framework/Ajax/lib/Horde/Ajax/Imple/Base.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/framework/Ajax/lib/Horde/Ajax/Imple/Base.php b/framework/Ajax/lib/Horde/Ajax/Imple/Base.php index aaafb1c98..c0c7b2d20 100644 --- a/framework/Ajax/lib/Horde/Ajax/Imple/Base.php +++ b/framework/Ajax/lib/Horde/Ajax/Imple/Base.php @@ -50,7 +50,7 @@ abstract class Horde_Ajax_Imple_Base * * @return string */ - protected function _getUrl($driver, $app = 'horde', $params = array()) + protected function _getUrl($driver, $app = 'horde', $params = array(), $full = false) { $qstring = 'imple=' . $driver; @@ -63,7 +63,7 @@ abstract class Horde_Ajax_Imple_Base } $registry = Horde_Registry::singleton(); - return Horde::url($registry->get('webroot', 'horde') . '/services/imple.php?' . $qstring); + return Horde::url($registry->get('webroot', 'horde') . '/services/imple.php?' . $qstring, $full); } /** -- 2.11.0