Quote:
Originally Posted by garrynewman
I've got a question related to this.
Is it possible to have the posts not get 'bumped' to the top of the list when a user replies. Have the always ordered by the date of the first post?
Is that possible?
|
BTW, ZT came up with this kewl mod for me for the HTML usergroup cause HTML still appears. Note: You need this
Plugin Installed for it to work
./includes/class_ffrss.php
FIND:
PHP Code:
$ThreadDM->registry->options['floodchecktime'] = 0; // Disable flood check in memory...
BELOW IT ADD:
PHP Code:
$vbulletin->overide_html = 1;
IN: bbcode_parse_start (Plugin Manager) for plugin "Allow Usergroups to post HTML"
FIND:
PHP Code:
if ($permissions['allowhtmlpermissions'] & $vbulletin->bf_ugp_allowhtmlpermissions['canposthtml'])
REPLACE IT WITH
PHP Code:
if (($permissions['allowhtmlpermissions'] & $vbulletin->bf_ugp_allowhtmlpermissions['canposthtml']) || $vbulletin->overide_html)
Now it should render feeds properly.
Note, this doesn't work if you installed
this fix... for some reason those lines of codes make the mod above break.