There is an hack around for "IP address Link Hiding". First apply that hack, then in the hack code find:
--- cut -----------
if ($logip==2 && ($bbuserinfo[usergroupid]==6 || ismoderator($forum[forumid]))) {
eval("\$post[iplogged] .= \"".gettemplate("postbit_ip_show")."\";");
}
if ($logip==1 && ($bbuserinfo[usergroupid]==6 || ismoderator($forum[forumid]))) {
eval("\$post[iplogged] .= \"".gettemplate("postbit_ip_hidden")."\";");
--- cut -----------
and replace it as:
--- cut -----------
if ($logip==2 && $bbuserinfo[usergroupid]==6) {
eval("\$post[iplogged] .= \"".gettemplate("postbit_ip_show")."\";");
}
if ($logip==1 && $bbuserinfo[usergroupid]==6) {
eval("\$post[iplogged] .= \"".gettemplate("postbit_ip_hidden")."\";");
--- cut -----------
|