Remove those naughty flushes.
git-svn-id: http://svn.automattic.com/wordpress/trunk@3749 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
8da6c47ae3
commit
f36c6bd2be
|
@ -37,7 +37,6 @@ class LJ_Import {
|
|||
unset($importdata);
|
||||
echo '<ol>';
|
||||
foreach ($posts as $post) {
|
||||
flush();
|
||||
preg_match('|<subject>(.*?)</subject>|is', $post, $post_title);
|
||||
$post_title = $wpdb->escape(trim($post_title[1]));
|
||||
if ( empty($post_title) ) {
|
||||
|
@ -118,8 +117,6 @@ class LJ_Import {
|
|||
printf(__('(%s comments)'), $num_comments);
|
||||
}
|
||||
echo '</li>';
|
||||
flush();
|
||||
ob_flush();
|
||||
}
|
||||
echo '</ol>';
|
||||
}
|
||||
|
|
|
@ -157,7 +157,6 @@ class MT_Import {
|
|||
echo '</form>';
|
||||
echo '</ol></div>';
|
||||
|
||||
flush();
|
||||
}
|
||||
|
||||
function select_authors() {
|
||||
|
@ -384,7 +383,6 @@ class MT_Import {
|
|||
|
||||
echo "</li>";
|
||||
}
|
||||
flush();
|
||||
}
|
||||
|
||||
echo '</ol>';
|
||||
|
|
|
@ -133,7 +133,6 @@ if (empty($admin_email)) {
|
|||
|
||||
|
||||
<?php
|
||||
flush();
|
||||
|
||||
$result = wp_install($weblog_title, __('admin'), $admin_email, $public);
|
||||
extract($result);
|
||||
|
|
Loading…
Reference in New Issue