Skip to:
Content

BuddyPress.org

Ticket #966: activity-filter-links.patch

File activity-filter-links.patch, 815 bytes (added by johnjamesjacoby, 15 years ago)
  • bp-activity-templatetags.php

     
    378378                        }
    379379                       
    380380                        $link = add_query_arg( 'afilter', $component_name );
    381                        
     381                        $link = apply_filters('bp_get_activity_filter_link', $link);
     382
    382383                        $component_links[] = $before . '<a href="' . $link . '">' . ucwords( __( $component_name, 'buddypress' ) ) . '</a>' . $after;
    383384                }
    384385
    385386                $link = remove_query_arg( array( 'afilter' ), $link );
     387                $link = apply_filters('bp_get_activity_filter_link', $link);
    386388               
    387389                if ( isset( $_GET['afilter'] ) )
    388390                        $component_links[] = '<' . $tag . ' id="afilter-clear"><a href="' . $link . '"">' . __( 'Clear Filter', 'buddypress' ) . '</a></' . $tag . '>';