habe heute den Multiple Choice Voting MOD eingebaut .
Jetzt habe ich den Fehler das die Antworten nicht gezählt werden .
Kann mir bitte einer helfen ?

$sql = "UPDATE " . VOTE_RESULTS_TABLE . "
SET vote_result = vote_result + 1
WHERE vote_id = $vote_id
AND vote_option_id IN ($vote_option_id)";
if ( !$db->sql_query($sql, BEGIN_TRANSACTION) )
{
message_die(GENERAL_ERROR, 'Could not update poll result', '', __LINE__, __FILE__, $sql);
}