Ah, ok. Well, I may have found how to do this. I have NOT tested this though.
In
poll.php, find:
PHP Code:
if ($question == '' OR $optioncount < 2)
And replace with:
PHP Code:
if ($question == '' OR $optioncount < 1)
Find:
PHP Code:
$polloptions = 2;
Replace with:
PHP Code:
$polloptions = 1;
Find:
PHP Code:
if ($vbulletin->GPC['pollquestion'] == '' OR $optioncount < 2)
Replace with
PHP Code:
if ($vbulletin->GPC['pollquestion'] == '' OR $optioncount < 1)
Let me know if this works or not