Need ability to request a full URL here since some of these imples
authorMichael J. Rubinsky <mrubinsk@horde.org>
Wed, 29 Jul 2009 00:57:45 +0000 (20:57 -0400)
committerMichael J. Rubinsky <mrubinsk@horde.org>
Wed, 29 Jul 2009 00:57:45 +0000 (20:57 -0400)
may be on an external site.

framework/Ajax/lib/Horde/Ajax/Imple/Base.php

index aaafb1c..c0c7b2d 100644 (file)
@@ -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);
     }
 
     /**