Well, first thing replace both of these in newreply.php and newthread.php
PHP Code:
//Proxy Check
if ($post[proxyip]!='') {
eval("\$post[proxysip] = \"".gettemplate("proxy_proxyip")."\";");
} else {
$post[proxysip]='';
}
//Proxy Check
with the following:
PHP Code:
//Proxy Check
if ($post[proxyip]!='') {
eval("\$post[proxysip] = \"".gettemplate("proxy_proxyip")."\";");
} else {
eval("\$post[proxysip] = \"".gettemplate("proxy_noproxyip")."\";");
}
//Proxy Check
Then make a new template called proxy_noproxyip and put in it whatever you want (ie: No Proxy Detected)
^-^