From 2378379131f364fe8fdc9ee2a6d2214bf458c7dc Mon Sep 17 00:00:00 2001
From: Dries Buytaert <dries@buytaert.net>
Date: Mon, 9 Oct 2006 06:53:25 +0000
Subject: [PATCH] - Patch #87957 by Eaton: poll module form fixes.

---
 modules/poll/poll.module | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/poll/poll.module b/modules/poll/poll.module
index 4a304634d43a..5d7a13d74b92 100644
--- a/modules/poll/poll.module
+++ b/modules/poll/poll.module
@@ -144,7 +144,7 @@ function poll_form($node, $form_values = NULL) {
 
   $form['choices'] = array(
     '#type' => 'hidden',
-    '#default_value' => $choices,
+    '#value' => $choices,
   );
 
   // Poll choices
@@ -163,7 +163,7 @@ function poll_form($node, $form_values = NULL) {
     '#type' => 'checkbox',
     '#parents' => array('morechoices'),
     '#title' => t('Need more choices'),
-    '#default_value' => 0,
+    '#value' => 0,
     '#description' => t("If the amount of boxes above isn't enough, check this box and click the Preview button below to add some more."),
     '#weight' => 1,
   );
-- 
GitLab