From: Ben Klang Date: Thu, 4 Mar 2010 15:44:46 +0000 (-0500) Subject: Shout: Properly close the nested output buffer X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=8f86ac313b3d24825430f4a7df79f53c7346f945;p=horde.git Shout: Properly close the nested output buffer --- diff --git a/shout/lib/Ajax/Application.php b/shout/lib/Ajax/Application.php index 1964a80d9..2968ff6b2 100644 --- a/shout/lib/Ajax/Application.php +++ b/shout/lib/Ajax/Application.php @@ -160,7 +160,7 @@ class Shout_Ajax_Application extends Horde_Ajax_Application_Base // Catch and return the output from $form->renderActive() ob_start(); $form->renderActive(null, null, 'javascript:saveAction()'); - $output = ob_get_clean(); + $output = ob_get_flush(); return $output; } catch (Exception $e) {