// ### DUPE CHECK ###
if (!empty($vboptions['flagwords'])) { $found = false; $lcpost = strtolower($post['message']); foreach (explode(' ', strtolower($vboptions['flagwords'])) as $flagword) { $found |= strpos($lcpost, $flagword); } if ($found) { $post['visible'] = 0; } }