Quote:
Today at 06:01 AM Zzed said this in Post #8
Ok, I have not tested this but here it goes.
change the if() statement from my previous post to this:
Code:
$vb_org = 0;
if(strstr($url, "http://www.vbulletin.org")) {
$vb_org = 1;
}
In showthread.php there are 2 instances of the following code:
Code:
$getperms=getpermissions($thread['forumid'],-1,-1,$forum['parentlist']);
Insert the following code directly below both of them:
Code:
if($vb_org == 1) {
$getperms['canview'] = 1;
}
This should allow a one time temporary view permission to VB.org visitors.
|
Thank you, sir.
Will this allow the view of the link only from here or can they view the rest of the site after getting in this way?