I had the sama problem (wp 2.7.1 running on Windows) and solved by changing the file “wp-includes/author-template.php”. At line 422, where you read
$link = get_option('home') . trailingslashit($link);
replace by
$link = get_option('home') . $link;
Hope it helps.