diff --git a/on_the_web.module b/on_the_web.module
index 05658f7..212e492 100755
--- a/on_the_web.module
+++ b/on_the_web.module
@@ -36,12 +36,18 @@ function on_the_web_block_configure($delta = 0) {
         '#description' => t('Please paste the full url, including http://'),
       );
     }
-    $form['services']['feed'] = array(
-      '#type' => 'checkbox',
-      '#title' => t('Show a similar icon for the RSS feed.'),
-      '#default_value' => variable_get('on_the_web_feed', FALSE),
-      '#description' => t('Checking this box his will add an RSS feed icon from this block.'),
-    );
+
+
+/**
+ * Deleting the special case for RSS - tgeller-20130323
+ *    $form['services']['feed'] = array(
+ *      '#type' => 'checkbox',
+ *      '#title' => t('Show a similar icon for the RSS feed.'),
+ *      '#default_value' => variable_get('on_the_web_feed', FALSE),
+ *      '#description' => t('Checking this box his will add an RSS feed icon from this block.'),
+ *    );
+ */
+
     $form['settings'] = array(
       '#type' => 'fieldset',
       '#title' => t('Settings'),
@@ -166,7 +172,11 @@ function on_the_web_get_services() {
     'linkedin' => array('name' => 'LinkedIn'),
     'itunes' => array('name' => 'iTunes'),
     'delicious' => array('name' => 'Delicious'),
-    'friendfeed' => array('name' => 'FriendFeed')
+    'friendfeed' => array('name' => 'FriendFeed'),
+/**
+ * Added RSS as an ordinary service - tgeller-20130323
+ */
+    'rss' => array('name' => 'RSS')    
   );
 
   drupal_alter('on_the_web_get_services', $services);
