Ticket #1131: search-should-use-topics-kakumei.diff

File search-should-use-topics-kakumei.diff, 952 bytes (added by simonwheatley, 3 years ago)

Convert var name of second loop to $bb_topic

  • Users/simon/Projects/StephenFry/site/forum/bb-templates/kakumei/search.php

     
    2626<div id="results-relevant" class="search-results"> 
    2727        <h4><?php _e('Relevant posts')?></h4> 
    2828        <ol> 
    29 <?php foreach ( $relevant as $bb_post ) : ?> 
     29<?php foreach ( $relevant as $bb_topic ) : ?> 
    3030                <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> 
    3232                        <span class="freshness"><?php printf( __('Posted %s'), bb_datetime_format_i18n( bb_get_post_time( array( 'format' => 'timestamp' ) ) ) ); ?></span> 
    3333                        <p><?php post_text(); ?></p> 
    3434                </li>