- Affected version
- 2.0.2
If a user is caught in the approval queue (for example due to a false positive on spam checking), even after approval, their post does not generate expected alerts. As quotes & mentions do not have their extra information gathered
Approved posts do generate reply alerts and watch thread/forum emails, IF it is the very last post.
The only invoking the notifier on last post is very heavy weight as XF has a lot of other notifier bits besides last post notify (ie watched forum at message level should generate an alert/email for every post)
Approved posts do generate reply alerts and watch thread/forum emails, IF it is the very last post.
PHP:
protected function onApprove()
{
// if this is not the last post, then another notification would have been triggered already
if ($this->post->isLastPost())
...
Last edited: