summaryrefslogtreecommitdiff
path: root/modules/aggregator
diff options
context:
space:
mode:
authorNeil Drumm <drumm@3064.no-reply.drupal.org>2006-11-25 09:04:22 +0000
committerNeil Drumm <drumm@3064.no-reply.drupal.org>2006-11-25 09:04:22 +0000
commit205f8ff01bbbbf010a5bee4734cc169e67d8d452 (patch)
tree9393543b303f509427ee4debecd8c9d1f9e9bb3e /modules/aggregator
parentb86df33b8cd670fd230f2e13cc0a8098de449eb7 (diff)
downloadbrdo-205f8ff01bbbbf010a5bee4734cc169e67d8d452.tar.gz
brdo-205f8ff01bbbbf010a5bee4734cc169e67d8d452.tar.bz2
#97941 by webchick. Consistent defaults for 'site_name' variable.
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 ccaf7909b..e8396558d 100644
--- a/modules/aggregator/aggregator.module
+++ b/modules/aggregator/aggregator.module
@@ -1212,7 +1212,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', t('Drupal')) . ' ' . t('aggregator'), url('aggregator' . $url, NULL, NULL, TRUE), variable_get('site_name', t('Drupal')) . ' - ' . t('aggregated feeds') . $title, $items, 'en');
+ $output .= format_rss_channel(variable_get('site_name', 'Drupal') . ' ' . t('aggregator'), url('aggregator' . $url, NULL, NULL, TRUE), variable_get('site_name', 'Drupal') . ' - ' . t('aggregated feeds') . $title, $items, 'en');
$output .= "</rss>\n";
drupal_set_header('Content-Type: application/rss+xml; charset=utf-8');