}
$exclusive = false;
+ $mention = false;
if ($is_forum_thread) {
foreach (Tag::getByURIId($item['parent-uri-id'], [Tag::MENTION, Tag::EXCLUSIVE_MENTION]) as $term) {
if ($term['type'] == Tag::EXCLUSIVE_MENTION) {
$exclusive = true;
} elseif ($term['type'] == Tag::MENTION) {
- $exclusive = false;
+ $mention = true;
}
}
}
$data['cc'][] = $profile['followers'];
}
} elseif (($term['type'] == Tag::MENTION) && ($profile['type'] == 'Group')) {
- $exclusive = false;
+ $mention = true;
}
$data['to'][] = $profile['url'];
}
$data['cc'][] = $profile['followers'];
}
} elseif (($term['type'] == Tag::MENTION) && ($profile['type'] == 'Group')) {
- $exclusive = false;
+ $mention = true;
}
$data['to'][] = $profile['url'];
}
}
}
+ if ($mention) {
+ $exclusive = false;
+ }
+
if ($is_forum && !$exclusive && !empty($follower)) {
$data['cc'][] = $follower;
} elseif (!$exclusive) {