Hi crittek,
thx for bug report, just fixed it and uploaded new version (1.2.6) – still needs to be checked by Moderators.
until that just change in search.php replace
<div class="post">
<h1><a href="<?php the_permalink();?>" title="<?php the_title();?>"><?php the_title();?></a></h1>
<span class="category"><?php the_category(', ') ?></span><span class="date">Published <?php the_time('F j, Y'); ?> at <?php the_time();?></span> <span class="category"><?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?></span>
<?php the_excerpt();?>
</div>
</div>
<?php endwhile; ?>
<?php else: ?>
<h1>Sorry, no Posts matched your Criteria</h1>
<?php get_search_form();?>
</div>
with
<div class="post">
<h1><a href="<?php the_permalink();?>" title="<?php the_title();?>"><?php the_title();?></a></h1>
<span class="category"><?php the_category(', ') ?></span><span class="date">Published <?php the_time('F j, Y'); ?> at <?php the_time();?></span> <span class="category"><?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?></span>
<?php the_excerpt();?>
</div>
<?php endwhile; ?>
</div>
<?php else: ?>
<h1>Sorry, no Posts matched your Criteria</h1>
<?php get_search_form();?>
</div>