Ticket #1274: 2436-fixes.diff
File 2436-fixes.diff, 2.8 KB (added by , 13 years ago) |
---|
-
bb-templates/kakumei/search.php
14 14 <?php foreach ( $recent as $bb_post ) : ?> 15 15 <li<?php alt_class( 'recent' ); ?>> 16 16 <a class="result" href="<?php post_link(); ?>"><?php echo bb_show_topic_context( $q, get_topic_title( $bb_post->topic_id ) ); ?></a> 17 <span class="freshness"><?php printf( __( ' Posted by <a href="%1$s">%2$s</a> on %3$s'), get_user_profile_link( $bb_post->poster_id ), get_post_author(), bb_datetime_format_i18n( bb_get_post_time( array( 'format' => 'timestamp' ) ) ) ); ?></span>17 <span class="freshness"><?php printf( __( 'By <a href="%1$s">%2$s</a> on %3$s'), get_user_profile_link( $bb_post->poster_id ), get_post_author(), bb_datetime_format_i18n( bb_get_post_time( array( 'format' => 'timestamp' ) ) ) ); ?></span> 18 18 <p><?php echo bb_show_context( $q, $bb_post->post_text ); ?></p> 19 19 </li> 20 20 <?php endforeach; ?> … … 27 27 <h4><?php _e( 'Relevant Topics' )?></h4> 28 28 <ol> 29 29 <?php foreach ( $relevant as $topic ) : ?> 30 <?php $bb_post = bb_get_first_post( $topic ); ?> 30 31 <li<?php alt_class( 'relevant' ); ?>> 31 <a class="result" href="<?php post_link( $topic->post_id); ?>"><?php echo bb_show_topic_context( $q, get_topic_title() ); ?></a>32 <span class="freshness"><?php printf( __( ' Posted by <a href="%1$s">%2$s</a> on %3$s' ), get_user_profile_link( $topic->topic_id), get_topic_author(), bb_datetime_format_i18n( get_topic_start_time( array( 'format' => 'timestamp' ) ) ) ); ?></span>33 <p><?php echo bb_show_context( $q, $ topic->post_text ); ?></p>32 <a class="result" href="<?php post_link(); ?>"><?php echo bb_show_topic_context( $q, get_topic_title() ); ?></a> 33 <span class="freshness"><?php printf( __( 'By <a href="%1$s">%2$s</a> on %3$s' ), get_user_profile_link( $topic->topic_poster ), get_topic_author(), bb_datetime_format_i18n( get_topic_start_time( array( 'format' => 'timestamp' ) ) ) ); ?></span> 34 <p><?php echo bb_show_context( $q, $bb_post->post_text ); ?></p> 34 35 </li> 35 36 <?php endforeach; ?> 36 37 </ol> -
search.php
28 28 /* Relevant */ 29 29 $bb_query_form->BB_Query_Form( 'topic', array( 'search' => $q ), array( 'page' => 1, 'post_status' => 0, 'topic_status' => 0, 'search', 'forum_id', 'tag', 'topic_author', 'post_author' ), 'bb_relevant_search' ); 30 30 $relevant = $bb_query_form->results; 31 if ( $re cent ) {31 if ( $relevant ) { 32 32 $relevant_count = isset( $bb_query_form->count ) ? $bb_query_form->count : count( $relevant ); 33 33 $relevant = array_slice( $relevant, $search_start, $search_stop ); 34 34 } else {