I did that before, just forgot to post it here.
I had
PHP Code:
function fetch_censored_text($text,$forumid=1)
This removed my error message. But i still cannot get the hack to work how i want it too.
I found inside
Functions_newpost.php this code
PHP Code:
// censor main message text
$post['message'] = fetch_censored_text($post['message']);
and changed it too
PHP Code:
// censor main message text
$post['message'] = fetch_censored_text($post['message'],$forumid);
but still no luck lol. I know im messing up somewhere (obviously)