Skip to:
Content

BuddyPress.org

Changeset 11385


Ignore:
Timestamp:
01/17/2017 11:55:06 PM (8 years ago)
Author:
mercime
Message:

Accessibility: Remove redundant title attributes from user and message links.

See #7363.

Location:
trunk/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-members/bp-members-functions.php

    r11269 r11385  
    523523     * @param int    $user_id ID of the user to check.
    524524     */
    525     return apply_filters( 'bp_core_get_userlink', '<a href="' . $url . '" title="' . $display_name . '">' . $display_name . '</a>', $user_id );
     525    return apply_filters( 'bp_core_get_userlink', '<a href="' . $url . '">' . $display_name . '</a>', $user_id );
    526526}
    527527
  • trunk/src/bp-templates/bp-legacy/buddypress/activity/entry.php

    r10904 r11385  
    5757            <?php if ( bp_get_activity_type() == 'activity_comment' ) : ?>
    5858
    59                 <a href="<?php bp_activity_thread_permalink(); ?>" class="button view bp-secondary-action" title="<?php esc_attr_e( 'View Conversation', 'buddypress' ); ?>"><?php _e( 'View Conversation', 'buddypress' ); ?></a>
     59                <a href="<?php bp_activity_thread_permalink(); ?>" class="button view bp-secondary-action"><?php _e( 'View Conversation', 'buddypress' ); ?></a>
    6060
    6161            <?php endif; ?>
Note: See TracChangeset for help on using the changeset viewer.