From 73bcf5f0f440ad012ccaef375ca5f988046e628b Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Wed, 5 Sep 2007 18:24:25 +0000 Subject: [PATCH] - Patch #172961 by webernet: code style fixes. --- modules/aggregator/aggregator.pages.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/aggregator/aggregator.pages.inc b/modules/aggregator/aggregator.pages.inc index b5c3fb66c6f..15f006ce4c6 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 .= "\n"; $output .= "\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 .= "\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 .= '
'. t('Updated:') . " $updated
"; + $output .= '
'. t('Updated:') ." $updated
"; $output .= "\n"; return $output;