Like mrjarbenne, I was also wondering if it’s possible to get the “Flag” link in comment replies to be inline with “Reply” and “Delete” (and of the same size)?
Finally got around to investigating this bug. It was hooking into the wrong action around activity comments. Think this is the fix.
Edit bpModDefaultContentTypes.php and find the line (around line 53):
`add_action(‘bp_after_activity_comment’, array(__CLASS__, ‘activity_comments_print_link’));`
Delete/comment it out and add this instead:
`add_action(‘bp_activity_comment_options’, array(__CLASS__, ‘activity_comments_print_link’));`
Together with these other fixes, I think the plugin is now functional in BP 1.6+