don't attach the imple when being called from services/imple.php
authorMichael J. Rubinsky <mrubinsk@horde.org>
Mon, 19 Jul 2010 17:59:14 +0000 (13:59 -0400)
committerMichael J. Rubinsky <mrubinsk@horde.org>
Mon, 19 Jul 2010 17:59:14 +0000 (13:59 -0400)
This is where we are serving an ajax request from the imple, not rendering it.

horde/services/imple.php

index db96e87..d6714d2 100644 (file)
@@ -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'])