Index: theme.php
===================================================================
--- theme.php	(revision 14236)
+++ theme.php	(working copy)
@@ -222,8 +222,9 @@
 		$theme_data['Tags'] = array_map( 'trim', explode( ',', wp_kses( $theme_data['Tags'], array() ) ) );
 
 	if ( $theme_data['Author'] == '' ) {
-		$theme_data['Author'] = __('Anonymous');
+		$theme_data['Author'] = $theme_data['AuthorName'] = __('Anonymous');
 	} else {
+		$theme_data['AuthorName'] = wp_kses( $theme_data['Author'], $themes_allowed_tags );
 		if ( empty( $theme_data['AuthorURI'] ) ) {
 			$theme_data['Author'] = wp_kses( $theme_data['Author'], $themes_allowed_tags );
 		} else {
@@ -281,6 +282,7 @@
 		$description = wptexturize($theme_data['Description']);
 		$version     = $theme_data['Version'];
 		$author      = $theme_data['Author'];
+		$authorname	 = $theme_data['AuthorName'];
 		$template    = $theme_data['Template'];
 		$stylesheet  = dirname($theme_file);
 
@@ -403,7 +405,7 @@
 		}
 
 		$theme_roots[$stylesheet] = str_replace( WP_CONTENT_DIR, '', $theme_root );
-		$wp_themes[$name] = array( 'Name' => $name, 'Title' => $title, 'Description' => $description, 'Author' => $author, 'Version' => $version, 'Template' => $template, 'Stylesheet' => $stylesheet, 'Template Files' => $template_files, 'Stylesheet Files' => $stylesheet_files, 'Template Dir' => $template_dir, 'Stylesheet Dir' => $stylesheet_dir, 'Status' => $theme_data['Status'], 'Screenshot' => $screenshot, 'Tags' => $theme_data['Tags'], 'Theme Root' => $theme_root, 'Theme Root URI' => str_replace( WP_CONTENT_DIR, content_url(), $theme_root ) );
+		$wp_themes[$name] = array( 'Name' => $name, 'Title' => $title, 'Description' => $description, 'Author' => $author, 'AuthorName' => $authorname, 'Version' => $version, 'Template' => $template, 'Stylesheet' => $stylesheet, 'Template Files' => $template_files, 'Stylesheet Files' => $stylesheet_files, 'Template Dir' => $template_dir, 'Stylesheet Dir' => $stylesheet_dir, 'Status' => $theme_data['Status'], 'Screenshot' => $screenshot, 'Tags' => $theme_data['Tags'], 'Theme Root' => $theme_root, 'Theme Root URI' => str_replace( WP_CONTENT_DIR, content_url(), $theme_root ) );
 	}
 
 	unset($theme_files);
