The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
||||
|
||||
Image verification for posting by both guest and registered users
After receiving spam from registered users, we thought it would be a good idea to turn on the image verification/validation on for everyone, including registered users.
1) newreply.php and newthread.php In both newreply.php (line 969) and newthread.php (line 411), I removed !$vbulletin->userinfo['userid'] from the if statement: Code:
if ($vbulletin->options['postimagecheck'] AND !$vbulletin->userinfo['userid'] AND $vbulletin->options['regimagetype']) Code:
if ($vbulletin->options['postimagecheck'] AND $vbulletin->options['regimagetype']) Code:
if ($vbulletin->options['postimagecheck'] AND !$post['preview'] AND !$vbulletin->userinfo['userid'] AND $vbulletin->options['regimagetype']) Code:
if ($vbulletin->options['postimagecheck'] AND !$post['preview'] AND $vbulletin->options['regimagetype']) |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|