From 8f86ac313b3d24825430f4a7df79f53c7346f945 Mon Sep 17 00:00:00 2001 From: Ben Klang Date: Thu, 4 Mar 2010 10:44:46 -0500 Subject: [PATCH] Shout: Properly close the nested output buffer --- shout/lib/Ajax/Application.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- 2.11.0