From: Michael J. Rubinsky Date: Mon, 19 Jul 2010 17:59:14 +0000 (-0400) Subject: don't attach the imple when being called from services/imple.php X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=8243f99d9a66ed465bdf09c9cd72adcb151b1f9c;p=horde.git don't attach the imple when being called from services/imple.php This is where we are serving an ajax request from the imple, not rendering it. --- diff --git a/horde/services/imple.php b/horde/services/imple.php index db96e8715..d6714d2d4 100644 --- a/horde/services/imple.php +++ b/horde/services/imple.php @@ -65,7 +65,7 @@ if (isset($args['impleApp'])) { $impleargs = array($args['impleApp'], $impleName); } -$imple = $injector->getInstance('Horde_Ajax_Imple')->getImple($impleargs); +$imple = $injector->getInstance('Horde_Ajax_Imple')->getImple($impleargs, array(), true); $result = $imple->handle($args, $post); $ct = empty($_SERVER['Content-Type'])