<?php
$i = 1;
$temp = $wp_query;
$wp_query = null;
$wp_query = new WP_Query();
$wp_query->query('showposts=-1&post_type=history'.'&paged='.$paged);
while ($wp_query->have_posts()) : $wp_query->the_post();
?>
<?php endwhile; ?>
<?php
$wp_query = null;
$wp_query = $temp; // Reset
?>