@coffee2code
that change isn't working for me, though i suspect the problem has to do with misunderstanding the change set. If I understand it correctly, I am to change line 177 of the wp-blog-header.php file from this:
if (1 == count($posts)) { Â
to this:
if (Â is_single() || is_page() ) {
Additionally the change log seems to indicate some change on line 257, but the new code appears to be the same as the original, though there's something weird with an additional blank, un-numbered line... Ignoring the line 257 confusion, and make the above change, all pages fail to draw with a php error reporting that the is_single() function doesn't exist.
Any suggestions?