Quote:
Originally Posted by nhawk
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';
}
|
It's this one:
https://vborg.vbsupport.ru/showthread.php?t=229511
Thanks for your prompt reply!