diff --git a/core/modules/poll/poll.module b/core/modules/poll/poll.module index ef19dd964d2cbf4db54f232f07e209f956483958..982981afb9b4aee318710499f2307165fb0e26c9 100644 --- a/core/modules/poll/poll.module +++ b/core/modules/poll/poll.module @@ -472,6 +472,9 @@ function poll_validate($node, $form) { function poll_field_attach_prepare_translation_alter(&$entity, $context) { if ($context['entity_type'] == 'node' && $entity->type == 'poll') { $entity->choice = $context['source_entity']->choice; + foreach ($entity->choice as $i => $choice) { + $entity->choice[$i]['chvotes'] = 0; + } } }