Quote:
Today at 03:29 AM Boofo said this in Post #7
I don't allow guests to view threads or messages at all. How would I make it so if I linked to something on my site from vb.org here, the link would show, but only for this site?
|
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.