Index: views_plugin_style_rss.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/views/plugins/views_plugin_style_rss.inc,v
retrieving revision 1.2
diff -u -r1.2 views_plugin_style_rss.inc
--- views_plugin_style_rss.inc	2 Dec 2008 00:02:06 -0000	1.2
+++ views_plugin_style_rss.inc	20 May 2010 19:07:19 -0000
@@ -20,7 +20,7 @@
     }
 
     $url = url($this->view->get_url(NULL, $path), $url_options);
-    if ($display->has_path()) {
+    if ($display->has_path() && !$this->options['feed_in_links']) {
       if (empty($this->preview)) {
         drupal_add_feed($url, $title);
       }
@@ -63,6 +63,11 @@
       '#process' => array('views_process_dependency'),
       '#dependency' => array('edit-style-options-override' => array(FALSE)),
     );
+    $form['feed_in_links'] = array(
+      '#type' => 'checkbox',
+      '#default_value' => !empty($this->options['feed_in_links']),
+      '#title' => t('Display the feed icon in the links attached to the view.'),
+    );
   }
 
   /**

