You need to log into the vbulletin.com community forum before clicking on the link- but here is the fix for those looking-
As copied from the bug report-
If you are having this issue, here is how you can fix it:
Go to admincp > Styles & Templates > Style manager > Edit templates
Edit the template named: option
replace everything in there with:
Code:
<vb:if condition="isset($optiontitle) AND !empty($optiontitle) AND isset($optionvalue)">
<option value="{vb:raw optionvalue}" class="{vb:raw optionclass}" {vb:raw optionselected}>{vb:raw optiontitle}</option>
<vb:else />
<vb:each from="options" key="forumid" value="option">
<option value="{vb:raw option.optionvalue}" class="{vb:raw option.optionclass}" {vb:raw option.optionselected}>{vb:raw option.optiontitle}</option>
</vb:each>
</vb:if>
Save changes.