diff options
Diffstat (limited to 'modules/aggregator')
-rw-r--r-- | modules/aggregator/aggregator.pages.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/aggregator/aggregator.pages.inc b/modules/aggregator/aggregator.pages.inc index b5c3fb66c..15f006ce4 100644 --- a/modules/aggregator/aggregator.pages.inc +++ b/modules/aggregator/aggregator.pages.inc @@ -166,7 +166,7 @@ function theme_aggregator_page_item($item) { $source = ''; if (isset($item->ftitle) && isset($item->fid)) { - $source = l($item->ftitle, "aggregator/sources/$item->fid", array('attributes' => array('class' => 'feed-item-source'))) . ' -'; + $source = l($item->ftitle, "aggregator/sources/$item->fid", array('attributes' => array('class' => 'feed-item-source'))) .' -'; } if (date('Ymd', $item->timestamp) == date('Ymd')) { @@ -297,7 +297,7 @@ function aggregator_page_rss() { $output .= "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n"; $output .= "<rss version=\"2.0\">\n"; - $output .= format_rss_channel(variable_get('site_name', 'Drupal') . ' ' . t('aggregator'), url('aggregator' . $url, array('absolute' => TRUE)), variable_get('site_name', 'Drupal') . ' - ' . t('aggregated feeds') . $title, $items); + $output .= format_rss_channel(variable_get('site_name', 'Drupal') .' '. t('aggregator'), url('aggregator'. $url, array('absolute' => TRUE)), variable_get('site_name', 'Drupal') .' - '. t('aggregated feeds') . $title, $items); $output .= "</rss>\n"; drupal_set_header('Content-Type: application/rss+xml; charset=utf-8'); @@ -374,7 +374,7 @@ function theme_aggregator_feed($feed) { $updated = l($updated, 'admin/content/aggregator'); } - $output .= '<div class="feed-updated"><em>'. t('Updated:') . "</em> $updated</div>"; + $output .= '<div class="feed-updated"><em>'. t('Updated:') ."</em> $updated</div>"; $output .= "</div>\n"; return $output; |