? poll-module-cleanup.patch
? system-module-cleanup.patch
? taxonomy-module-cleanup.patch
? upload-module-cleanup-rev2.patch
? upload-module-cleanup.patch
? user-module-cleanup.patch
Index: modules/poll/poll.install
===================================================================
RCS file: /cvs/drupal/drupal/modules/poll/poll.install,v
retrieving revision 1.20
diff -u -p -r1.20 poll.install
--- modules/poll/poll.install	26 Feb 2009 07:30:27 -0000	1.20
+++ modules/poll/poll.install	21 Apr 2009 21:21:44 -0000
@@ -2,6 +2,12 @@
 // $Id: poll.install,v 1.20 2009/02/26 07:30:27 webchick Exp $
 
 /**
+ * @file
+ * Install file for poll module.
+ */
+
+
+/**
  * Implementation of hook_install().
  */
 function poll_install() {
Index: modules/poll/poll.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/poll/poll.module,v
retrieving revision 1.291
diff -u -p -r1.291 poll.module
--- modules/poll/poll.module	20 Apr 2009 03:41:36 -0000	1.291
+++ modules/poll/poll.module	21 Apr 2009 21:21:45 -0000
@@ -249,7 +249,7 @@ function poll_form(&$node, $form_state) 
     $delta = count($node->choice);
     $weight = -$delta;
     foreach ($node->choice as $chid => $choice) {
-      $key = 'chid:'. $chid;
+      $key = 'chid:' . $chid;
       $form['choice_wrapper']['choice'][$key] = _poll_choice_form($key, $choice['chid'], $choice['chtext'], $choice['chvotes'], $choice['weight'], $choice_count);
       $weight = ($choice['weight'] > $weight) ? $choice['weight'] : $weight;
     }
@@ -258,7 +258,7 @@ function poll_form(&$node, $form_state) 
   // Add initial or additional choices.
   $existing_delta = $delta;
   for ($delta; $delta < $choice_count; $delta++) {
-    $key = 'new:'. ($delta - $existing_delta);
+    $key = 'new:' . ($delta - $existing_delta);
     $form['choice_wrapper']['choice'][$key] = _poll_choice_form($key, NULL, '', 0, $weight, $choice_count);
   }
 
@@ -537,7 +537,7 @@ function poll_delete($node) {
     ->execute();
   db_delete('poll_vote')
     ->condition('nid', $node->nid)
-    ->execute();  
+    ->execute();
 }
 
 /**
@@ -751,7 +751,7 @@ function theme_poll_choices($form) {
     );
 
     // Add any additional classes set on the row.
-    $row['class'] .= isset($form[$key]['#attributes']['class']) ? ' '. $form[$key]['#attributes']['class'] : '';
+    $row['class'] .= isset($form[$key]['#attributes']['class']) ? ' ' . $form[$key]['#attributes']['class'] : '';
 
     $rows[] = $row;
   }
Index: modules/poll/poll.test
===================================================================
RCS file: /cvs/drupal/drupal/modules/poll/poll.test,v
retrieving revision 1.16
diff -u -p -r1.16 poll.test
--- modules/poll/poll.test	31 Mar 2009 01:49:53 -0000	1.16
+++ modules/poll/poll.test	21 Apr 2009 21:21:46 -0000
@@ -1,6 +1,11 @@
 <?php
 // $Id: poll.test,v 1.16 2009/03/31 01:49:53 webchick Exp $
 
+/**
+ * @file
+ * Tests for the poll module.
+ */
+
 class PollTestCase extends DrupalWebTestCase {
 
   /**
