Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
09/29/2008 07:24:05 PM (17 years ago)
Author:
apeatling
Message:

Fixed issues with activity feed where user details would not show, and some recorded user activity would use the incorrect username.

File:
1 edited

Legend:

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

    r358 r364  
    146146   
    147147    /* Switch 'their/your' and 'Name/You' depending on whether the user is logged in or not and viewing their profile */
    148     if ( !$is_home ) {
    149         $content[0] = str_replace( __('your'), __('their'), $content[0] );
    150         $content[0] = str_replace( __('You'), $full_name, $content[0] );
    151     } else {
     148    if ( $is_home ) {
    152149        $content[0] = str_replace( __('their'), __('your'), $content[0] );
    153150        $content[0] = str_replace( $full_name, __('You'), $content[0] );       
Note: See TracChangeset for help on using the changeset viewer.