Changeset 2516
- Timestamp:
- 02/01/2010 12:14:48 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-core/bp-core-templatetags.php
r2494 r2516 285 285 286 286 $defaults = array( 287 'length' => 1 40287 'length' => 15 288 288 ); 289 289 … … 297 297 298 298 if ( !empty( $update['id'] ) ) 299 $update_content .= ' <a href="' . $bp->root_domain . '/' . BP_ACTIVITY_SLUG . '/p/' . $update['id'] . '">#</a>';299 $update_content .= ' · <a href="' . $bp->root_domain . '/' . BP_ACTIVITY_SLUG . '/p/' . $update['id'] . '">' . __( 'View', 'buddypress' ) . '</a>'; 300 300 301 301 return apply_filters( 'bp_get_member_latest_update', $update_content ); -
trunk/bp-themes/bp-default/activity/entry.php
r2441 r2516 36 36 <div class="activity-inreplyto"> 37 37 <strong><?php _e( 'In reply to', 'buddypress' ) ?></strong> - <?php bp_activity_parent_content() ?> · 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> 39 39 </div> 40 40 <?php endif; ?>
Note: See TracChangeset
for help on using the changeset viewer.