diff --git a/src/bp-activity/bp-activity-template.php b/src/bp-activity/bp-activity-template.php
index b4240b2..f6b532e 100644
a
|
b
|
function bp_activity_can_comment_reply( $comment = false ) { |
3073 | 3073 | $comment = bp_activity_current_comment(); |
3074 | 3074 | } |
3075 | 3075 | |
3076 | | if ( ! empty( $comment ) ) { |
| 3076 | // Neutralize activity_comment. |
| 3077 | if ( 'activity_comment' === bp_get_activity_type() ) { |
| 3078 | $can_comment = false; |
| 3079 | |
| 3080 | // Process comment. |
| 3081 | } elseif ( ! empty( $comment ) ) { |
3077 | 3082 | |
3078 | 3083 | // Fall back on current comment in activity loop. |
3079 | 3084 | $comment_depth = isset( $comment->depth ) |