The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
Super Mods & IPs
How can I make it so that Super Moderators can't see IP addresses?
I thought that the IP check box included in the group permissions was intended to accomplish this, but it doesn't. Super Mods can still see the IP when listing an individual users thread, or by clicking the 'logged' link. |
#2
|
||||
|
||||
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 ----------- |
#3
|
|||
|
|||
I've searched but I can't find that hack.
|
#4
|
|||
|
|||
Quote:
|
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|