I did and I didn’t see anything. Although you are right, the two pages effected are based on single.php. I’m just using conditional statements to load in different templates.
Here is my Loop.
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<small><?php the_time('F jS, Y') ?></small>
<h1><?php the_title(); ?></h1>
<!-- by <?php the_author() ?> -->
<div class="entry">
<?php the_content('<p class="serif">Read the rest of this entry »</p>'); ?>
<?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
<div class="postmetadata"><small><?php the_tags(); ?><?php edit_post_link('Edit', '', ' | '); ?> </small></div>
</div>
</div>
<?php comments_template(); ?>
<?php endwhile; else: ?>