Flush instead of echo
authorphilippe_mingo <philippe_mingo@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Thu, 30 May 2002 14:35:51 +0000 (14:35 +0000)
committerphilippe_mingo <philippe_mingo@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Thu, 30 May 2002 14:35:51 +0000 (14:35 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@2908 7612ce4b-ef26-0410-bec9-ea0150e637f0

functions/mailbox_display.php

index c7d24e2e5ffb1e874c88ec355c7333ad4ae7bf32..ceed2dc4cc29fe05438c302f126c53768b004016 100644 (file)
@@ -606,7 +606,8 @@ function displayMessageArray($imapConnection, $num_msgs, $start_msg,
         } while ($i && $i < $endVar);
     }
     
-    echo '</table>' .
+    echo '</table>';
+    $html->flush(
          $html->tag( 'table',
             $html->tag( 'tr',
                 $html->tag( 'td',
@@ -624,7 +625,8 @@ function displayMessageArray($imapConnection, $num_msgs, $start_msg,
          , array( 'bgcolor' => $color[9],
                   'width' => '100%',
                   'cellpadding' => 1,
-                  'cellspacing' => 1 ) );
+                  'cellspacing' => 1 ) )
+    );
          
     /* End of message-list table */