Ticket #1131: search-should-use-topics-kakumei.diff
| File search-should-use-topics-kakumei.diff, 952 bytes (added by simonwheatley, 3 years ago) |
|---|
-
Users/simon/Projects/StephenFry/site/forum/bb-templates/kakumei/search.php
26 26 <div id="results-relevant" class="search-results"> 27 27 <h4><?php _e('Relevant posts')?></h4> 28 28 <ol> 29 <?php foreach ( $relevant as $bb_ post) : ?>29 <?php foreach ( $relevant as $bb_topic ) : ?> 30 30 <li<?php alt_class( 'relevant' ); ?>> 31 <a href="<?php post_link(); ?>"><?php topic_title($bb_ post->topic_id); ?></a>31 <a href="<?php post_link(); ?>"><?php topic_title($bb_topic->topic_id); ?></a> 32 32 <span class="freshness"><?php printf( __('Posted %s'), bb_datetime_format_i18n( bb_get_post_time( array( 'format' => 'timestamp' ) ) ) ); ?></span> 33 33 <p><?php post_text(); ?></p> 34 34 </li>