--- link.module	2007-10-21 08:01:11.000000000 +0200
+++ /srv/www/htdocs/grim.se/sites/all/modules/link/link.module	2008-05-18 19:14:29.000000000 +0200
@@ -544,6 +544,10 @@
       'label' => t('Label, as link with label as title'),
       'field types' => array('link'),
     ),
+    'link' => array(
+      'label' => t('Plain, as link'),
+      'field types' => array('link'),
+    ),
   );
 }
 
@@ -605,6 +609,10 @@
   elseif ($formatter == 'label') {
     $output = l(t($field['widget']['label']), $url, $attributes, $query, $fragment);
   }
+  // Build the link using the URL as title
+  elseif ($formatter == 'link') {
+    $output = l($url, link_cleanup_url($item['url']), $attributes, $query, $fragment);
+  }
   // Build the link with a title
   elseif (strlen(trim($item['title'])) || ($field['title'] == 'value' && strlen(trim($field['title_value'])))) {
     // Use the title defined at the field level
