With this snippet you must post a specified Word, before u can submit
open
posting.php
find
- Code: Select all
// Store message, sync counters
if (!sizeof($error) && $submit)
{
after add
- Code: Select all
// Word needed to post / 4seven / 2010
if(strpos(utf8_normalize_nfc(request_var('message', '', true)), 'MY-MAGIC-WORD') !== false){
$submit = true;}
else{
$submit = false;}
// Word needed to post / 4seven / 2010
replace MY-MAGIC-WORD with the word which is needed to submit the post[/quote]