From 1001b7079d19128bb55a71c4fcb5b989400cba31 Mon Sep 17 00:00:00 2001
From: Dries Buytaert <dries@buytaert.net>
Date: Thu, 2 Mar 2006 19:16:41 +0000
Subject: [PATCH] - Patch #47267 by joshk: made aggregator categorization work.

---
 modules/aggregator.module            | 7 +++----
 modules/aggregator/aggregator.module | 7 +++----
 2 files changed, 6 insertions(+), 8 deletions(-)

diff --git a/modules/aggregator.module b/modules/aggregator.module
index cf3eb7189e72..4247e68fefc4 100644
--- a/modules/aggregator.module
+++ b/modules/aggregator.module
@@ -62,7 +62,7 @@ function aggregator_settings() {
 
   $form['aggregator_category_selector'] = array(
     '#type' => 'radios', '#title' => t('Category selection type'), '#default_value' => variable_get('aggregator_category_selector', 'check'),
-    '#options' => array('check' => t('checkboxes'), 'select' => t('multiple selector')),
+    '#options' => array('checkboxes' => t('checkboxes'), 'select' => t('multiple selector')),
     '#description' => t('The type of category selection widget which is shown on categorization pages. Checkboxes are easier to use; a multiple selector is good for working with large numbers of categories.')
   );
   return $form;
@@ -999,9 +999,8 @@ function aggregator_page_list_validate($form_id, &$form) {
   }
 }
 
-function aggregator_page_list_submit($form_id, $form) {
-  global $form_values;
-  foreach ($form_values['categories'] as $iid => $selection) {
+function aggregator_page_list_submit($form_id, $form_values) {
+  foreach ($form_values as $iid => $selection) {
     db_query('DELETE FROM {aggregator_category_item} WHERE iid = %d', $iid);
     foreach ($selection as $cid) {
       if ($cid) {
diff --git a/modules/aggregator/aggregator.module b/modules/aggregator/aggregator.module
index cf3eb7189e72..4247e68fefc4 100644
--- a/modules/aggregator/aggregator.module
+++ b/modules/aggregator/aggregator.module
@@ -62,7 +62,7 @@ function aggregator_settings() {
 
   $form['aggregator_category_selector'] = array(
     '#type' => 'radios', '#title' => t('Category selection type'), '#default_value' => variable_get('aggregator_category_selector', 'check'),
-    '#options' => array('check' => t('checkboxes'), 'select' => t('multiple selector')),
+    '#options' => array('checkboxes' => t('checkboxes'), 'select' => t('multiple selector')),
     '#description' => t('The type of category selection widget which is shown on categorization pages. Checkboxes are easier to use; a multiple selector is good for working with large numbers of categories.')
   );
   return $form;
@@ -999,9 +999,8 @@ function aggregator_page_list_validate($form_id, &$form) {
   }
 }
 
-function aggregator_page_list_submit($form_id, $form) {
-  global $form_values;
-  foreach ($form_values['categories'] as $iid => $selection) {
+function aggregator_page_list_submit($form_id, $form_values) {
+  foreach ($form_values as $iid => $selection) {
     db_query('DELETE FROM {aggregator_category_item} WHERE iid = %d', $iid);
     foreach ($selection as $cid) {
       if ($cid) {
-- 
GitLab