Index: bbp-includes/topics/template-tags.php
===================================================================
--- bbp-includes/topics/template-tags.php	(revision 4253)
+++ bbp-includes/topics/template-tags.php	(working copy)
@@ -1816,7 +1816,7 @@
 		else
 			$anchor = __( 'No Replies', 'bbpress' );
 
-		return apply_filters( 'bbp_get_topic_freshness_link', $anchor, $topic_id );
+		return apply_filters( 'bbp_get_topic_freshness_link', $anchor, $topic_id, $time_since, $link_url, $title );
 	}
 
 /**
Index: bbp-includes/forums/template-tags.php
===================================================================
--- bbp-includes/forums/template-tags.php	(revision 4253)
+++ bbp-includes/forums/template-tags.php	(working copy)
@@ -510,7 +510,9 @@
 	function bbp_get_forum_freshness_link( $forum_id = 0 ) {
 		$forum_id  = bbp_get_forum_id( $forum_id );
 		$active_id = bbp_get_forum_last_active_id( $forum_id );
-
+		$link_url = '';
+		$title = '';
+		
 		if ( empty( $active_id ) )
 			$active_id = bbp_get_forum_last_reply_id( $forum_id );
 
@@ -532,7 +534,7 @@
 		else
 			$anchor = __( 'No Topics', 'bbpress' );
 
-		return apply_filters( 'bbp_get_forum_freshness_link', $anchor, $forum_id );
+		return apply_filters( 'bbp_get_forum_freshness_link', $anchor, $forum_id, $time_since, $link_url, $title, $active_id );
 	}
 
 /**
