summaryrefslogtreecommitdiff
path: root/modules/aggregator
diff options
context:
space:
mode:
authorKjartan Mannes <kjartan@2.no-reply.drupal.org>2002-05-13 19:14:35 +0000
committerKjartan Mannes <kjartan@2.no-reply.drupal.org>2002-05-13 19:14:35 +0000
commit3bf40eccde6e8d0c3adaaf264738569deff9600f (patch)
treef3456730d49915bee0622a241b5e980ff4e5d2b3 /modules/aggregator
parent581bc6a267f2377addd53286b27a282b44816257 (diff)
downloadbrdo-3bf40eccde6e8d0c3adaaf264738569deff9600f.tar.gz
brdo-3bf40eccde6e8d0c3adaaf264738569deff9600f.tar.bz2
- fixing parse error.
Diffstat (limited to 'modules/aggregator')
-rw-r--r--modules/aggregator/aggregator.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/aggregator/aggregator.module b/modules/aggregator/aggregator.module
index 83c2bba69..726dc08f5 100644
--- a/modules/aggregator/aggregator.module
+++ b/modules/aggregator/aggregator.module
@@ -634,7 +634,7 @@ function import_page_sources() {
$result = db_query("SELECT * FROM feed ORDER BY title");
while ($feed = db_fetch_object($result)) {
- $output .= lm("", array("mod" => "import", "op" => "feed", "id" => $feed->fid)));
+ $output .= lm("", array("mod" => "import", "op" => "feed", "id" => $feed->fid));
$output .= "<div style=\"margin-left: 20px;\">". check_output($feed->description, 1) ."</div><br />";
}