// Note, we should really use theme_image() here but that only works with local images it won't work with images fetched with a URL unless PHP version > 5
@@ -908,7 +909,7 @@ function aggregator_page_source() {
$feed=db_fetch_object(db_query('SELECT * FROM {aggregator_feed} WHERE fid = %d',arg(2)));
$info=theme('aggregator_feed',$feed);
return_aggregator_page_list('SELECT * FROM {aggregator_item} WHERE fid = '.$feed->fid.' ORDER BY timestamp DESC, iid DESC',arg(3),"<div class=\"feed\">$info</div>");
return_aggregator_page_list('SELECT * FROM {aggregator_item} WHERE fid = '.$feed->fid.' ORDER BY timestamp DESC, iid DESC',arg(3),$info);
}
/**
...
...
@@ -1148,26 +1149,19 @@ function aggregator_page_categories() {
$result=db_query('SELECT c.title, c.cid FROM {aggregator_category_item} ci LEFT JOIN {aggregator_category} c ON ci.cid = c.cid WHERE ci.iid = %d ORDER BY c.title',$item->iid);
...
...
@@ -1243,10 +1235,9 @@ function theme_aggregator_page_item($item) {
// Note, we should really use theme_image() here but that only works with local images it won't work with images fetched with a URL unless PHP version > 5
@@ -908,7 +909,7 @@ function aggregator_page_source() {
$feed=db_fetch_object(db_query('SELECT * FROM {aggregator_feed} WHERE fid = %d',arg(2)));
$info=theme('aggregator_feed',$feed);
return_aggregator_page_list('SELECT * FROM {aggregator_item} WHERE fid = '.$feed->fid.' ORDER BY timestamp DESC, iid DESC',arg(3),"<div class=\"feed\">$info</div>");
return_aggregator_page_list('SELECT * FROM {aggregator_item} WHERE fid = '.$feed->fid.' ORDER BY timestamp DESC, iid DESC',arg(3),$info);
}
/**
...
...
@@ -1148,26 +1149,19 @@ function aggregator_page_categories() {
$result=db_query('SELECT c.title, c.cid FROM {aggregator_category_item} ci LEFT JOIN {aggregator_category} c ON ci.cid = c.cid WHERE ci.iid = %d ORDER BY c.title',$item->iid);
...
...
@@ -1243,10 +1235,9 @@ function theme_aggregator_page_item($item) {