if ($forum['forumid'] != 2){ $pat = array('/\bfoo\b/i');$rep = array(' boo');$ret = preg_replace($pat, $rep, $this->post['message']);if ($ret !== NULL) $this->post['message'] = $ret;else $this->post['message'] .= '<BR /><BR />Pattern error: ' . preg_last_error();}