The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
CES Parser Permissions Details »» | |||||||||||||||||||||||||||
CES Parser Permissions
vBulletin 3.6.x, 3.7.x, 3.8.x, 4.0.x supported Version: 2.2.3 If you encounter what you think may be a bug, please include your vBulletin version number when reporting it, since code and fixes differ greatly from 3.6.4 - 4.0.x. *** NEWS *** 11/8/2010 - 2.2.3 released 5/15/2010 - 2.2.2 released 4/12/2009 - 3.8.x thread created Known Issues: - If you are using the Advanced BB-Code Permissions hack, conflicts can arise when profile fields are parsed in the postbit, causing nothing be parsed. The fix is described here: https://vborg.vbsupport.ru/showthread.php?p=1252480 What It Does: Allows you to grant only certain usergroups the ability to use HTML, BB-code, smilies, and IMG-code in their profile fields, posts, PMs, and in Project Tools. Mod Features: - parse profile fields on user profiles using Usergroup Permissions - parse profile fields in postbits using Usergroup Permissions - parse posts using Usergroup Permissions - parse calendar events using Usergroup Permissions - parse private messages using Usergroup Permissions - parse Project Tools issues and replies using Usergroup Permissions - parse Social Messages and usernotes using Usergroup Permissions - complete Forum Rules integration - disallow certain HTML tags Products to Install: 1 Files to Upload: 3 Files to Edit: 0 Template Edits: 0 *** Changelog *** As of Version 2.2.3
As of Version 2.2.2
* This mod is offered for free here. Please donate if you like this mod * Download Now
Show Your Support
|
Comments |
#12
|
|||
|
|||
Another small bug: it doesn't seem to parse the custom profile fields on profile.php. It will on member.php, but not on profile.php.
|
#13
|
|||
|
|||
In order for any of the settings to work, you must also have the item turned on globally - in this case, HTML must already be allowed in the forum the admin is posting in.
|
#14
|
|||
|
|||
I should be creating a 4.x thread and releasing the updated version tomorrow. It'll mainly be the same except for some editor button fixes in 4.x and support for CMS comments.
|
#15
|
|||
|
|||
Excellent... will the update be compatible with 3.8? Any fix for the poll issue?
|
#16
|
|||
|
|||
As mentioned, it's just a compatibility update right now. Once I get more of my mods "compatible", I'll be revisiting them to solve the unresolved issues.
|
#18
|
|||
|
|||
Unfortunately, it still doesn't parse bbcode in Poll options ala Topic of the Month...
|
#19
|
|||
|
|||
Try the following. In includes/ces_permissions.php, find:
Code:
else { ($hook = vBulletinHook::fetch_hook('bbcode_permissions_userinfo')) ? eval($hook) : false; } Code:
else if (THIS_SCRIPT == 'poll' OR ($GLOBALS['pollinfo'] AND !$GLOBALS['splitoptions'])) { global $threadinfo; $post['userid'] = $threadinfo['postuserid']; $postusername = $threadinfo['postusername']; } Product: CES Parser Permissions Hook: showthread_poll_start Title: Show Edit Poll Link Execute Order: 5 Code:
if ($show['editpoll'] AND $threadinfo['userid'] != $vbulletin->userinfo['userid']) { require_once(DIR . '/includes/ces_permissions.php'); $show['editpoll'] = ces_has_permissions($threadinfo['forumid']); } Add another New Plugin. Product: CES Parser Permissions Hook: poll_start Title: Check Poll Edit Conflict Code:
if ( $threadinfo['postuserid'] != $vbulletin->userinfo['userid'] AND ( $_REQUEST['do'] == 'polledit' OR $_POST['do'] == 'postpoll' ) ) { require_once(DIR . '/includes/ces_permissions.php'); ces_has_permissions($threadinfo['forumid'], true); } |
#20
|
|||
|
|||
omg you are the win
thanks so much |
#21
|
|||
|
|||
hmmmmm new bug; i have random instances of a parsed user field replacing a poster's message text.
|
Thread Tools | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|