From: Michael M Slusarz Date: Fri, 20 Nov 2009 19:15:04 +0000 (-0700) Subject: Delay buffering notifications since additional notifications may occur when creating... X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=d7e7ba6e892dc3584c1f12e13551758396c688ec;p=horde.git Delay buffering notifications since additional notifications may occur when creating the template data --- diff --git a/imp/compose.php b/imp/compose.php index 8e7cc96b3..8672de062 100644 --- a/imp/compose.php +++ b/imp/compose.php @@ -914,7 +914,6 @@ if ($redirect) { $t->set('hidden', $hidden_val); $t->set('title', htmlspecialchars($title)); - $t->set('status', Horde_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"))); @@ -1225,6 +1224,7 @@ if ($redirect) { } } + $t->set('status', Horde_Util::bufferOutput(array('IMP', 'status'))); $template_output = $t->fetch(IMP_TEMPLATES . '/compose/compose.html'); }