thedvs |
10-08-2005 08:03 PM |
hehe this, just a quick explaination and the subscription link
PHP Code:
if (is_numeric($forumid) AND !$this->registry->GPC['preview'] AND ($this->registry->userinfo['forumpermissions']["$forumid"] & $this->registry->bf_ugp_forumpermissions['showscrambled']))
{
preg_match_all('/.{1}/s', $text, $char_matches);
$char_array = $char_matches[0];
foreach ($char_array as $char)
{
$bin_array[] = substr('0000' . base_convert(ord($char), 10, 2), -8);
}
$parsedtext = '<font color ="#FFFF00">To view the contents of this Thread, you need to Purchase a Paid Subsciption to this Board.<br><a href="payments.php">Click here to Purchase a subscription.</a></font><br><br>' . implode(' ', $bin_array);
$parsedhasimages = false;
}
Now if we could do it so that it does this on forums the admin chooses aswell as just the usergroups... KIRBY? :)
Cause I don't think this is a useless hack like Kirby said. It has great potential.
|