Changeset 4621
- Timestamp:
- 12/21/2012 08:18:08 PM (13 years ago)
- Location:
- trunk/includes
- Files:
-
- 4 edited
-
common/template-tags.php (modified) (2 diffs)
-
replies/template-tags.php (modified) (1 diff)
-
search/template-tags.php (modified) (1 diff)
-
topics/template-tags.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/common/template-tags.php
r4618 r4621 2153 2153 2154 2154 // Separator 2155 'sep' => __( '›', 'bbpress' ),2155 'sep' => is_rtl() ? __( '‹', 'bbpress' ) : __( '›', 'bbpress' ), 2156 2156 'pad_sep' => 1, 2157 2157 'sep_before' => '<span class="bbp-breadcrumb-sep">', … … 2273 2273 $sep = apply_filters( 'bbp_breadcrumb_separator', $sep ); 2274 2274 $crumbs = apply_filters( 'bbp_breadcrumbs', $crumbs ); 2275 2276 // If right-to-left, reverse the crumb order 2277 if ( is_rtl() ) 2278 array_reverse( $crumbs ); 2275 2279 2276 2280 // Build the trail -
trunk/includes/replies/template-tags.php
r4587 r4621 154 154 'total' => ceil( (int) $bbp->reply_query->found_posts / (int) $r['posts_per_page'] ), 155 155 'current' => (int) $bbp->reply_query->paged, 156 'prev_text' => '←',157 'next_text' => '→',156 'prev_text' => is_rtl() ? '→' : '←', 157 'next_text' => is_rtl() ? '←' : '→', 158 158 'mid_size' => 1, 159 159 'add_args' => ( bbp_get_view_all() ) ? array( 'view' => 'all' ) : false -
trunk/includes/search/template-tags.php
r4586 r4621 127 127 'total' => ceil( (int) $bbp->search_query->found_posts / (int) $r['posts_per_page'] ), 128 128 'current' => (int) $bbp->search_query->paged, 129 'prev_text' => '←',130 'next_text' => '→',129 'prev_text' => is_rtl() ? '→' : '←', 130 'next_text' => is_rtl() ? '←' : '→', 131 131 'mid_size' => 1, 132 132 'add_args' => $add_args, -
trunk/includes/topics/template-tags.php
r4587 r4621 301 301 'total' => $r['posts_per_page'] == $bbp->topic_query->found_posts ? 1 : ceil( (int) $bbp->topic_query->found_posts / (int) $r['posts_per_page'] ), 302 302 'current' => (int) $bbp->topic_query->paged, 303 'prev_text' => '←',304 'next_text' => '→',303 'prev_text' => is_rtl() ? '→' : '←', 304 'next_text' => is_rtl() ? '←' : '→', 305 305 'mid_size' => 1 306 306 ) );
Note: See TracChangeset
for help on using the changeset viewer.