Skip to:
Content

bbPress.org

Changeset 4621


Ignore:
Timestamp:
12/21/2012 08:18:08 PM (13 years ago)
Author:
johnjamesjacoby
Message:

RTL improvements for pagination arrows and breadcrumb order. See #2124.

Location:
trunk/includes
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/includes/common/template-tags.php

    r4618 r4621  
    21532153           
    21542154            // Separator
    2155             'sep'             => __( '›', 'bbpress' ),
     2155            'sep'             => is_rtl() ? __( '‹', 'bbpress' ) : __( '›', 'bbpress' ),
    21562156            'pad_sep'         => 1,
    21572157            'sep_before'      => '<span class="bbp-breadcrumb-sep">',
     
    22732273        $sep    = apply_filters( 'bbp_breadcrumb_separator', $sep    );
    22742274        $crumbs = apply_filters( 'bbp_breadcrumbs',          $crumbs );
     2275
     2276        // If right-to-left, reverse the crumb order
     2277        if ( is_rtl() )
     2278            array_reverse( $crumbs );
    22752279
    22762280        // Build the trail
  • trunk/includes/replies/template-tags.php

    r4587 r4621  
    154154                'total'     => ceil( (int) $bbp->reply_query->found_posts / (int) $r['posts_per_page'] ),
    155155                'current'   => (int) $bbp->reply_query->paged,
    156                 'prev_text' => '&larr;',
    157                 'next_text' => '&rarr;',
     156                'prev_text' => is_rtl() ? '&rarr;' : '&larr;',
     157                'next_text' => is_rtl() ? '&larr;' : '&rarr;',
    158158                'mid_size'  => 1,
    159159                'add_args'  => ( bbp_get_view_all() ) ? array( 'view' => 'all' ) : false
  • trunk/includes/search/template-tags.php

    r4586 r4621  
    127127                'total'     => ceil( (int) $bbp->search_query->found_posts / (int) $r['posts_per_page'] ),
    128128                'current'   => (int) $bbp->search_query->paged,
    129                 'prev_text' => '&larr;',
    130                 'next_text' => '&rarr;',
     129                'prev_text' => is_rtl() ? '&rarr;' : '&larr;',
     130                'next_text' => is_rtl() ? '&larr;' : '&rarr;',
    131131                'mid_size'  => 1,
    132132                'add_args'  => $add_args,
  • trunk/includes/topics/template-tags.php

    r4587 r4621  
    301301            'total'     => $r['posts_per_page'] == $bbp->topic_query->found_posts ? 1 : ceil( (int) $bbp->topic_query->found_posts / (int) $r['posts_per_page'] ),
    302302            'current'   => (int) $bbp->topic_query->paged,
    303             'prev_text' => '&larr;',
    304             'next_text' => '&rarr;',
     303            'prev_text' => is_rtl() ? '&rarr;' : '&larr;',
     304            'next_text' => is_rtl() ? '&larr;' : '&rarr;',
    305305            'mid_size'  => 1
    306306        ) );
Note: See TracChangeset for help on using the changeset viewer.