Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
01/09/2010 09:58:51 AM (16 years ago)
Author:
apeatling
Message:

Fixing use of » and «

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-activity/bp-activity-templatetags.php

    r2276 r2277  
    5353                'total' => ceil( (int)$this->total_activity_count / (int)$this->pag_num ),
    5454                'current' => (int)$this->pag_page,
    55                 'prev_text' => '«',
    56                 'next_text' => '»',
     55                'prev_text' => '←',
     56                'next_text' => '→',
    5757                'mid_size' => 1
    5858            ));
     
    447447                $content .= '<li id="acomment-' . $comment->id . '">';
    448448                $content .= '<div class="acomment-avatar">' . bp_core_fetch_avatar( array( 'item_id' => $comment->user_id, 'width' => 25, 'height' => 25, 'email' => $comment->user_email ) ) . '</div>';
    449                 $content .= '<div class="acomment-meta"><a href="' . bp_core_get_user_domain( $comment->user_id, $comment->user_nicename, $comment->user_login ) . '">' . esc_attr( $comment->user_fullname ) . '</a> &middot; ' . sprintf( __( '%s ago', 'buddypress' ), bp_core_time_since( strtotime( $comment->date_recorded ) ) );
     449                $content .= '<div class="acomment-meta"><a href="' . bp_core_get_user_domain( $comment->user_id, $comment->user_nicename, $comment->user_login ) . '">' . apply_filters( 'bp_get_member_name', $comment->user_fullname ) . '</a> &middot; ' . sprintf( __( '%s ago', 'buddypress' ), bp_core_time_since( strtotime( $comment->date_recorded ) ) );
    450450
    451451                /* Reply link */
Note: See TracChangeset for help on using the changeset viewer.