Changeset 4689
- Timestamp:
- 07/18/2011 08:54:02 AM (15 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
-
bp-activity/bp-activity-template.php (modified) (1 diff)
-
bp-themes/bp-default/activity/entry.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-activity/bp-activity-template.php
r4679 r4689 1222 1222 } 1223 1223 1224 $link = '<a href="' . wp_nonce_url( $url, 'bp_activity_delete_link' ) . '" class=" item-button bp-secondary-action ' . $class . ' confirm" rel="nofollow">' . __( 'Delete', 'buddypress' ) . '</a>';1224 $link = '<a href="' . wp_nonce_url( $url, 'bp_activity_delete_link' ) . '" class="button item-button bp-secondary-action ' . $class . ' confirm" rel="nofollow">' . __( 'Delete', 'buddypress' ) . '</a>'; 1225 1225 return apply_filters( 'bp_get_activity_delete_link', $link ); 1226 1226 } -
trunk/bp-themes/bp-default/activity/entry.php
r4676 r4689 59 59 <?php if ( bp_activity_can_comment() ) : ?> 60 60 61 <a href="<?php bp_get_activity_comment_link(); ?>" class=" acomment-reply bp-primary-action" id="acomment-comment-<?php bp_activity_id(); ?>"><?php printf( __( 'Comment <span>%s</span>', 'buddypress' ), bp_activity_get_comment_count() ); ?></a>61 <a href="<?php bp_get_activity_comment_link(); ?>" class="button acomment-reply bp-primary-action" id="acomment-comment-<?php bp_activity_id(); ?>"><?php printf( __( 'Comment <span>%s</span>', 'buddypress' ), bp_activity_get_comment_count() ); ?></a> 62 62 63 63 <?php endif; ?> … … 67 67 <?php if ( !bp_get_activity_is_favorite() ) : ?> 68 68 69 <a href="<?php bp_activity_favorite_link(); ?>" class=" fav bp-secondary-action" title="<?php esc_attr_e( 'Mark as Favorite', 'buddypress' ); ?>"><?php _e( 'Favorite', 'buddypress' ) ?></a>69 <a href="<?php bp_activity_favorite_link(); ?>" class="button fav bp-secondary-action" title="<?php esc_attr_e( 'Mark as Favorite', 'buddypress' ); ?>"><?php _e( 'Favorite', 'buddypress' ) ?></a> 70 70 71 71 <?php else : ?> 72 72 73 <a href="<?php bp_activity_unfavorite_link(); ?>" class=" unfav bp-secondary-action" title="<?php esc_attr_e( 'Remove Favorite', 'buddypress' ); ?>"><?php _e( 'Remove Favorite', 'buddypress' ) ?></a>73 <a href="<?php bp_activity_unfavorite_link(); ?>" class="button unfav bp-secondary-action" title="<?php esc_attr_e( 'Remove Favorite', 'buddypress' ); ?>"><?php _e( 'Remove Favorite', 'buddypress' ) ?></a> 74 74 75 75 <?php endif; ?>
Note: See TracChangeset
for help on using the changeset viewer.