Quote:
Originally Posted by dastar
I noticed that on my forums today and was on my way here to report it. Someone asked me what was up with all the HTML, then I noticed it. :ermm:
Still, a nice mod with the exception of having to edit everything to get the code to display :ninja:
EDIT: Strangely enough, this doesn't always happen. I just made a new post with HTML in it that parsed and displayed correctly the first time without editing it.
|
Guys:
Try this for the bbcode_parse plugin (provided by the master Kirby):
PHP Code:
global $post;
$perms =& $post['permissions'];
if (!$perms)
{
$perms = fetch_permissions(0, $post['userid'], $post);
}
// Was this post made by an allowed Usergroup member?
if ($perms['allowhtmlpermissions'] & $this->registry->bf_ugp_allowhtmlpermissions['canposthtml'])
{
// This is an allowed post so parse HTML.
$dohtml = '1';
}
If you could try that and report back to me that it is all good (works perfectly on NZB as far as I can tell), I will update the .zip when I get home from work.