Quote:
Originally Posted by BettorsTalk.com
What do you mean the flagged words would go into moderation?
|
Let's say you've specified
bad words as the words that should trigger this.
Now a user posts
Quote:
This sentence contains bad words
|
Then this post will go into the moderation queue.
Quote:
And is there anyway to have it send an e-mail to the person that made the post with a comment on why the post didn't show up?
|
Sure. Create a new phrase postflagged with appropriate text in phrasegroups Email Subject Text and Email Body Text.
Then place the following code after $post['visible'] = 0;
PHP Code:
eval(fetch_email_phrases('postflagged', $bbuserinfo['languageid']));
vbmail($bbuserinfo['email'], $subject, $message, true);