From bdfd3a6080c2877dd791d402ca200cf553063c8f Mon Sep 17 00:00:00 2001 From: catch <catch@35733.no-reply.drupal.org> Date: Sat, 7 Jan 2012 17:35:11 +0900 Subject: [PATCH] Issue #404116 by amateescu, neclimdul: Fixed Provide default choices on poll translations. --- core/modules/poll/poll.module | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/modules/poll/poll.module b/core/modules/poll/poll.module index ef19dd964d2c..982981afb9b4 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; + } } } -- GitLab