Skip to:
Content

BuddyPress.org

Changeset 2516


Ignore:
Timestamp:
02/01/2010 12:14:48 PM (15 years ago)
Author:
apeatling
Message:

Fixes #1631

Location:
trunk
Files:
2 edited

Legend:

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

    r2494 r2516  
    285285
    286286        $defaults = array(
    287             'length' => 140
     287            'length' => 15
    288288        );
    289289
     
    297297
    298298        if ( !empty( $update['id'] ) )
    299             $update_content .= ' <a href="' . $bp->root_domain . '/' . BP_ACTIVITY_SLUG . '/p/' . $update['id'] . '">#</a>';
     299            $update_content .= ' &middot; <a href="' . $bp->root_domain . '/' . BP_ACTIVITY_SLUG . '/p/' . $update['id'] . '">' . __( 'View', 'buddypress' ) . '</a>';
    300300
    301301        return apply_filters( 'bp_get_member_latest_update', $update_content );
  • trunk/bp-themes/bp-default/activity/entry.php

    r2441 r2516  
    3636        <div class="activity-inreplyto">
    3737            <strong><?php _e( 'In reply to', 'buddypress' ) ?></strong> - <?php bp_activity_parent_content() ?> &middot;
    38             <a href="<?php bp_activity_thread_permalink() ?>" class="view" title="<?php _e( 'View Thread / Permalink', 'buddypress' ) ?>">#</a>
     38            <a href="<?php bp_activity_thread_permalink() ?>" class="view" title="<?php _e( 'View Thread / Permalink', 'buddypress' ) ?>"><?php _e( 'View', 'buddypress' ) ?></a>
    3939        </div>
    4040    <?php endif; ?>
Note: See TracChangeset for help on using the changeset viewer.