Changeset 4618
- Timestamp:
- 12/21/2012 09:23:05 AM (13 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bbpress.php
r4612 r4618 181 181 /** Versions **********************************************************/ 182 182 183 $this->version = '2.3-bleeding-461 2';183 $this->version = '2.3-bleeding-4618'; 184 184 $this->db_version = '220'; 185 185 … … 924 924 925 925 // Search All 926 $search_slug . $search_page_rule => 'index.php? &paged=' . $wp_rewrite->preg_index( 1 ),927 $search_slug . $search_root_rule => 'index.php?' ,926 $search_slug . $search_page_rule => 'index.php?paged=' . $wp_rewrite->preg_index( 1 ), 927 $search_slug . $search_root_rule => 'index.php?' . $search_id, 928 928 ); 929 929 -
trunk/includes/common/template-tags.php
r4607 r4618 2243 2243 } elseif ( bbp_is_topic_tag_edit() ) { 2244 2244 $crumbs[] = '<a href="' . get_term_link( bbp_get_topic_tag_id(), bbp_get_topic_tag_tax_id() ) . '" class="bbp-breadcrumb-topic-tag">' . sprintf( __( 'Topic Tag: %s', 'bbpress' ), bbp_get_topic_tag_name() ) . '</a>'; 2245 2246 // Search 2247 } elseif ( bbp_is_search() && bbp_get_search_terms() ) { 2248 $crumbs[] = '<a href="' . home_url( bbp_get_search_slug() ) . '" class="bbp-breadcrumb-search">' . __( 'Search', 'bbpress' ) . '</a>'; 2245 2249 } 2246 2250 -
trunk/includes/core/template-functions.php
r4579 r4618 425 425 426 426 // Search Page 427 } elseif ( !empty( $bbp_search ) ) {427 } elseif ( isset( $bbp_search ) ) { 428 428 429 429 // Check if there are search query args set -
trunk/templates/default/bbpress/content-search.php
r4579 r4618 26 26 <?php bbp_get_template_part( 'pagination', 'search' ); ?> 27 27 28 <?php else : ?>28 <?php elseif ( bbp_get_search_terms() ) : ?> 29 29 30 30 <?php bbp_get_template_part( 'feedback', 'no-search' ); ?> 31 31 32 <?php else : ?> 33 34 <?php bbp_get_template_part( 'form', 'search' ); ?> 35 32 36 <?php endif; ?> 33 34 <?php bbp_get_template_part( 'form', 'search' ); ?>35 37 36 38 <?php do_action( 'bbp_template_after_search_results' ); ?> -
trunk/templates/default/css/bbpress.css
r4603 r4618 363 363 -------------------------------------------------------------- */ 364 364 365 div.bbp-search-form { 365 #bbpress-forums #bbp-search { 366 clear: left; 367 } 368 369 #bbpress-forums div.bbp-search-form { 366 370 float: right; 367 371 }
Note: See TracChangeset
for help on using the changeset viewer.