I forgot this step:
EDIT admin/FUNCTIONS.PHP
find:
PHP Code:
if (!$ignore[$post[userid]]) {
eval("\$retval = \"".gettemplate("postbit")."\";");
} else {
eval("\$retval = \"".gettemplate("postbit_ignore")."\";");
}
return $retval;
and replace it with
PHP Code:
if ($post[nuked]==1) {
eval("\$retval = \"".gettemplate("postnuked")."\";");
} else if ($ignore[$post[userid]]) {
eval("\$retval = \"".gettemplate("postbit_ignore")."\";");
} else {
eval("\$retval = \"".gettemplate("postbit")."\";");
}
return $retval;
I will update teh main post.