- Fixed misplaced check_plain(). Reported by Jim Phlew.

5.x
Dries Buytaert 2006-08-18 07:19:45 +00:00
parent 267a88e77e
commit 39996f511e
1 changed files with 2 additions and 2 deletions

View File

@ -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',