I'm using 2.1.2 on two blogs, Table for Five and MomReviews. In Technorati, Table for Five shows up as Untitled, MomReviews shows up correctly.
So, I dug through the header.php for both blogs, looking for the title tags within the head tags. Here's the difference between T45 and MR:
T45 looks like this (the theme is 3K2):
<title><?php wp_title(''); ?> <?php if ( !(is_404()) && (is_single()) or (is_page()) or (is_archive()) ) { ?> at <?php } ?> <?php bloginfo('name'); ?></title>
MomReviews looks like this (the theme is BlueMemories):
<title>
<?php bloginfo('name'); ?>
<?php if ( is_single() ) { ?>
» Blog Archive
<?php } ?>
<?php wp_title(); ?>
</title>
My question is, what is going on in the Table for Five title info that is keeping Technorati from picking up the title of the blog? Am I on the right track here at all?