Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
08/12/2013 10:53:30 PM (11 years ago)
Author:
johnjamesjacoby
Message:

Use esc_url() where esc_attr() was incorrectly used in activity/blogs/groups components. Also escape $link when it's fed into bp_activity_thumbnail_content_images() directly.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-blogs/bp-blogs-functions.php

    r7338 r7349  
    361361        // Get activity related links
    362362        $post_permalink = get_permalink( $recorded_comment->comment_post_ID );
    363         $comment_link   = htmlspecialchars( get_comment_link( $recorded_comment->comment_ID ) );
     363        $comment_link   = get_comment_link( $recorded_comment->comment_ID );
    364364
    365365        // Prepare to record in activity streams
Note: See TracChangeset for help on using the changeset viewer.