From: Michael M Slusarz Date: Thu, 8 Jan 2009 03:11:20 +0000 (-0700) Subject: Correctly buffer status output X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=26f248a8c2f9df123aa7e19d27009b97cedfc774;p=horde.git Correctly buffer status output --- diff --git a/imp/compose.php b/imp/compose.php index a0b4a9f3e..179442f2d 100644 --- a/imp/compose.php +++ b/imp/compose.php @@ -812,7 +812,7 @@ if ($redirect) { /* Prepare the redirect template. */ $t->set('mailbox', htmlspecialchars($thismailbox)); $t->set('index', htmlspecialchars($index)); - $t->set('status', IMP::status()); + $t->set('status', Util::bufferOutput(array('IMP', 'status'))); $t->set('title', htmlspecialchars($title)); $t->set('token', IMP::getRequestToken('imp.compose')); @@ -931,7 +931,7 @@ if ($redirect) { $t->set('hidden', $hidden_val); $t->set('title', htmlspecialchars($title)); - $t->set('status', IMP::status()); + $t->set('status', Util::bufferOutput(array('IMP', 'status'))); $t->set('send_msg_ak', Horde::getAccessKeyAndTitle(_("_Send Message"))); if ($conf['user']['allow_folders'] && !$readonly_drafts) { $t->set('save_draft_ak', Horde::getAccessKeyAndTitle(_("Save _Draft")));