diff --git a/modules/aggregator/aggregator.module b/modules/aggregator/aggregator.module
index 99d09940c69ce52666d1f23afa3d26ee65cc210c..d9dcc49b1f72471c9187fe0bf40f2a2544e57db0 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',