--- delicious.module	2009-01-23 10:49:33.000000000 -0800
+++ delicious-1.module	2009-02-05 18:46:39.000000000 -0800
@@ -71,6 +71,15 @@ function delicious_admin_settings() {
     '#options' => $node_types,
     '#description' => t('SELECT all node types that allow crosslinking and/or smarttagging.'),
   );
+   $form['delicious_more_link'] = array(
+    '#type' => 'textfield',
+    '#title' => t('Text to use for \'more\' link'),
+    '#default_value' => variable_get('delicious_more_link', more),
+    '#size' => 60,
+    '#maxlength' => 128,
+    '#required' => FALSE,
+    '#description' => t('Enter a word to link from the block to user pages. Default is \'more\'. Leave blank for none.'),
+);
   return system_settings_form($form);
 }
 
@@ -758,9 +767,11 @@ function delicious_recent($id) {
     array_pop($delicious_links);
     $more = TRUE;
   }
+  $delicious_more = (variable_get('delicious_more_link'));
+  
   $output = theme('delicious_block', $delicious_links, $block);
-  if ($display || isset($more)) {
-    $output .= '<div class="more-link">'. l(t('more'), 'delicious/block/'. $id) .'</div>';
+  if ($display || isset($more) && (variable_get('delicious_more_link'))) {
+    $output .= '<div class="more-link">'. l($delicious_more, 'delicious/block/'. $id) .'</div>';
   }
   return array("content" => $output, "subject" => $block->title);
 }
