Thank you for your response.
Solved the problem by changing the code in plugins/bbpress/includes/common/widgets.php
made a small change around the line no: 586
<div class=”user-avatar”><?php bbp_author_link($widget_query->post->ID ); ?></div>
<div class=”forum-title”>
post->ID ); ?>”><?php bbp_forum_title( $widget_query->post->ID ); ?>
<div class=”user-name”><?php bbp_author_link($widget_query->post->ID ); ?></div>
<div class=”date-time”><?php bbp_topic_last_active_time( $topic_id ); ?></div>
</div>
Thank You..