I find a small bug
I have in my settings that max option in poll's is 0 (to desactivate the max)
This mod allways show the error of mutch options in post that permission of administrator.
I can resolve editing the plugin "Write-in vote code"
in line with:
PHP Code:
if ($vbulletin->options['maxpolloptions'] < $pollinfo['numberoptions'])
i replace with:
PHP Code:
if ($vbulletin->options['maxpolloptions'] < $pollinfo['numberoptions'] && $vbulletin->options['maxpolloptions'] > 0)
and no more problems ;-)