From d4fe9203ed3b1ea8255aa4bdc4d7578559dd9f30 Mon Sep 17 00:00:00 2001
From: Dries Buytaert <dries@buytaert.net>
Date: Wed, 14 Dec 2005 13:30:01 +0000
Subject: [PATCH] - Patch #40630 by Morbus: made sure $teaser is always
 defined.

---
 modules/poll.module      | 1 +
 modules/poll/poll.module | 1 +
 2 files changed, 2 insertions(+)

diff --git a/modules/poll.module b/modules/poll.module
index ac8ca6d798ee..f90aaa3f8a2e 100644
--- a/modules/poll.module
+++ b/modules/poll.module
@@ -292,6 +292,7 @@ function poll_perm() {
  * Creates a simple teaser that lists all the choices.
  */
 function poll_teaser($node) {
+  $teaser = NULL;
   if (is_array($node->choice)) {
     foreach ($node->choice as $k => $choice) {
       $teaser .= '* '. $choice['chtext'] .'\n';
diff --git a/modules/poll/poll.module b/modules/poll/poll.module
index ac8ca6d798ee..f90aaa3f8a2e 100644
--- a/modules/poll/poll.module
+++ b/modules/poll/poll.module
@@ -292,6 +292,7 @@ function poll_perm() {
  * Creates a simple teaser that lists all the choices.
  */
 function poll_teaser($node) {
+  $teaser = NULL;
   if (is_array($node->choice)) {
     foreach ($node->choice as $k => $choice) {
       $teaser .= '* '. $choice['chtext'] .'\n';
-- 
GitLab