Quote:
Originally Posted by GONUMBER6
I think I may have found a bug. When enabled, my comments on articles won't show. Disabled they do.
Also is there a way to make the country flags work with this? My members are crying and want their flags back. 
|
Yes you did find a bug. Thank you!
I'll have the fix for that out shortly.
Which country flag mod are you using? If it's Boofo's country flags mod, you need to make this change to his 'Country Flags Template Edits' plugin...
Find...
Code:
$templatename = $vbulletin->options['legacypostbit'] == 1 ? 'postbit_legacy' : 'postbit';
Replace it with...
Code:
if($vbulletin->options['pbcollapse_offon'])
{
$templatename = $vbulletin->options['legacypostbit'] == 1 ? 'postbit_collapse_legacy' : 'postbit_collpase_postbit';
}else{
$templatename = $vbulletin->options['legacypostbit'] == 1 ? 'postbit_legacy' : 'postbit';
}