I was having the same problem with the FastTrack theme and traced it to the way its sidebar.php outputs the heading and list for pages:
1. Open sidebar.php
2. Find:
<?php wp_list_pages('title_li=<h2>' . __('Pages') . '</h2>' ); ?>
3. Replace with
<h2>Pages</h2>
<ul><?php wp_list_pages('title_li=' ); ?></ul>
A couple of months overdue, but hope this helps you out.