Index: weblinks.module
===================================================================
RCS file: /home/repos/drupal/drupal/sites/all/modules/weblinks/weblinks.module,v
retrieving revision 1.5
diff -b -d -u -r1.5 weblinks.module
--- weblinks.module	27 Mar 2007 08:52:33 -0000	1.5
+++ weblinks.module	27 Mar 2007 11:41:05 -0000
@@ -245,15 +245,6 @@
 		'#weight' => 0
 	);
 	
-	$form['weblinks_maxdisp_block_recent'] = array('#type' => 'textfield',
-		'#title' => t('Maximum Recent Web Links'), 
-		'#default_value' => variable_get("weblinks_maxdisp_block_recent", NULL), 
-		'#description' => t('Maximum number of links in the Recent Web Links block.'),
-		'#required' => FALSE,
-		'#size' => 2,
-		'#weight' => 1
-	);	
-
 	// Get the weblinks categories to add to the blogroll
 	$vid = _weblinks_get_vid();
 	$result = db_query("SELECT td.* 
@@ -1241,6 +1232,20 @@
       }
     }
   return $block;
+  }
+  elseif ($op == 'configure') {
+    $form = array();
+    switch ($delta) {
+      case 'weblink-recent':
+        $form['weblinks_maxdisp_block_recent'] = array(
+          '#type' => 'textfield',
+          '#title' => t('Maximum Recent Web Links'),
+          '#default_value' => variable_get('weblinks_maxdisp_block_recent', 10),
+          '#description' => t('The number of links to show.'),
+          );
+        break;
+    }
+    return $form;
   }
 }
 ?>
