Index: search.php
===================================================================
--- search.php	(revision 2432)
+++ search.php	(working copy)
@@ -14,7 +14,7 @@
 <?php foreach ( $recent as $bb_post ) : ?>
 		<li<?php alt_class( 'recent' ); ?>>
 			<a href="<?php post_link(); ?>"><?php topic_title($bb_post->topic_id); ?></a>
-			<span class="freshness"><?php printf( __('Posted %s'), bb_datetime_format_i18n( bb_get_post_time( array( 'format' => 'timestamp' ) ) ) ); ?></span>
+			<span class="freshness"><?php printf( __('&#8212; Posted by <a href="%s">%s</a> on %s'), get_user_profile_link( $bb_post->poster_id ), get_post_author(), bb_datetime_format_i18n( bb_get_post_time( array( 'format' => 'timestamp' ) ) ) ); ?></span>
 			<p><?php echo bb_show_context($q, $bb_post->post_text); ?></p>
 		</li>
 <?php endforeach; ?>
@@ -24,13 +24,12 @@
 
 <?php if ( $relevant ) : ?>
 <div id="results-relevant" class="search-results">
-	<h4><?php _e('Relevant posts')?></h4>
+	<h4><?php _e('Relevant Topics')?></h4>
 	<ol>
-<?php foreach ( $relevant as $bb_post ) : ?>
+<?php foreach ( $relevant as $topic ) : ?>
 		<li<?php alt_class( 'relevant' ); ?>>
-			<a href="<?php post_link(); ?>"><?php topic_title($bb_post->topic_id); ?></a>
-			<span class="freshness"><?php printf( __('Posted %s'), bb_datetime_format_i18n( bb_get_post_time( array( 'format' => 'timestamp' ) ) ) ); ?></span>
-			<p><?php post_text(); ?></p>
+			<a href="<?php topic_link(); ?>"><?php topic_title(); ?></a>
+			<span class="freshness"><?php printf( __('&#8212; Last post <a href="%s">%s ago</a> by <a href="%s">%s</a>'), get_topic_last_post_link(), get_topic_time(), get_user_profile_link($topic->topic_last_poster), get_topic_last_poster() ); ?></span>
 		</li>
 <?php endforeach; ?>
 	</ol>
