How to fix
Locate the line in the admin/applications/forums/sources/classes/post/classPost.php file:
if ( count( $choices_count ) > ( $this->max_poll_questions * $this->max_poll_choices_per_question ) )
Replace it with:
if ($choices_count && count($choices_count) > ($this->max_poll_questions * $this->max_poll_choices_per_question))