--- link.module.bak	Mon Dec 25 01:01:26 2006
+++ link.module	Mon Dec 25 01:15:59 2006
@@ -231,6 +231,10 @@ function link_field_formatter_info() {
       'label' => 'Plain, no link',
       'field types' => array('link'),
     ),
+    'short' => array(
+      'label' => 'Short, link only',
+      'field types' => array('link'),
+    ),
   );
 }
 
@@ -243,7 +247,7 @@ function link_field_formatter($field, $i
   if ($formatter == 'plain') {
     return check_plain($item['url']);
   }
-  
+
   $attributes = array();
   // Add attributes defined at the widget level
   if (is_array($item['attributes'])) {
@@ -261,8 +265,12 @@ function link_field_formatter($field, $i
       }
     }
   }
+
+  if ($formatter == 'short') {
+    $output = l(t('Link'),link_cleanup_url($item['url']),$attributes);
+  }
   // Build the link with a title
-  if (strlen(trim($item['title']))) {
+  else if (strlen(trim($item['title']))) {
     $output = l($item['title'],link_cleanup_url($item['url']),$attributes);
   }
   // Build the link with the URL as the title (max 80 characters)
