--- ed_readmore.module.orig	2009-11-24 12:21:46.000000000 +0530
+++ ed_readmore.module	2010-03-31 06:49:55.000000000 +0530
@@ -112,6 +112,12 @@
     '#title' => t('Read More link formatting and attributes'),
     '#collapsible' => FALSE,
   );
+    $form['ed_readmore_formatting']['ed_readmore_use_absolute_urls'] = array(
+      '#type' => 'checkbox',
+      '#title' => t('Insert absolute URLs'),
+      '#default_value' => variable_get('ed_readmore_use_absolute_urls', FALSE),
+      '#description' => t('Enabling this option will insert absolute URLs in the read more links. This is especially useful for having absolute URLs in Read More links in RSS feeds.'),
+    );
     $form['ed_readmore_formatting']['ed_readmore_text'] = array(
       '#type' => 'textfield',
       '#title' =>  t('Link text'),
@@ -264,6 +270,11 @@
   if (variable_get('ed_readmore_nofollow', TRUE)) {
     $link_options['attributes']['rel'] = 'nofollow';
   }
+  
+  // Use absolute URLs for the Read More link
+  if (variable_get('ed_readmore_use_absolute_urls', FALSE)) {
+    $link_options['absolute'] = TRUE;
+  }
 
   // Filter separator for cross-site scripting (XSS)
   $separator = filter_xss(variable_get('ed_readmore_separator', ED_READMORE_SEPARATOR_DEFAULT));
