- Open modules/node/node.module
- Find the function node_feed
- Find this block of code: $channel_defaults = array(
'version' => '2.0',
'title' => variable_get('site_name', 'Drupal') .' - '.
variable_get('site_slogan', ''),
'link' => $base_url,
'description' => variable_get('site_mission', ''),
'language' => $locale
); - The title line really should check whether you have a slogan or not. If you don't have a slogan, change this to: 'title' => variable_get('site_name', 'Drupal'),
Written in WikklyText.

Comments
Thanks for this post ...
Post new comment