From 39996f511e77c0cfb436558d2ed2609914b60464 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Fri, 18 Aug 2006 07:19:45 +0000 Subject: - Fixed misplaced check_plain(). Reported by Jim Phlew. --- modules/aggregator/aggregator.module | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/aggregator/aggregator.module') diff --git a/modules/aggregator/aggregator.module b/modules/aggregator/aggregator.module index 99d09940c..d9dcc49b1 100644 --- a/modules/aggregator/aggregator.module +++ b/modules/aggregator/aggregator.module @@ -449,8 +449,8 @@ function aggregator_form_feed($edit = array()) { $values = array(); $categories = db_query('SELECT c.cid, c.title, f.fid FROM {aggregator_category} c LEFT JOIN {aggregator_category_feed} f ON c.cid = f.cid AND f.fid = %d ORDER BY title', $edit['fid']); while ($category = db_fetch_object($categories)) { - $options[$category->cid] = $category->title; - if ($category->fid) $values[] = check_plain($category->cid); + $options[$category->cid] = check_plain($category->title); + if ($category->fid) $values[] = $category->cid; } if ($options) { $form['category'] = array('#type' => 'checkboxes', -- cgit v1.2.3