--- dashboard.php	2009/06/14 19:43:40	1.1
+++ dashboard.php	2009/06/14 19:44:23
@@ -644,10 +644,15 @@
 		$link = esc_url( strip_tags( $item->get_link() ) );
 
 		$author = $item->get_author();
-		$site_link = esc_url( strip_tags( $author->get_link() ) );
+		if ($author) {
+		  $site_link = esc_url( strip_tags( $author->get_link() ) );
 
-		if ( !$publisher = esc_html( strip_tags( $author->get_name() ) ) )
-			$publisher = __( 'Somebody' );
+		  if ( !$publisher = esc_html( strip_tags( $author->get_name() ) ) )
+		    $publisher = __( 'Somebody' );
+		}
+		else {
+		  $publisher = __( 'Somebody' );
+		}
 		if ( $site_link )
 			$publisher = "<a href='$site_link'>$publisher</a>";
 		else
