--- formblock.module	2011-01-17 01:43:12.000000000 -0800
+++ formblock-orig.module	2011-01-17 01:10:51.000000000 -0800
@@ -101,40 +101,3 @@ function formblock_get_block($type) {
     );
   }
 }
-
-// Setup the admin/settings/formblock page
-function formblock_menu() {
-  $items = array();
-  $items['admin/settings/formblock'] = array(
-    'description' => 'Configure settings for form block.',
-    'access arguments' => array('access administration pages'),
-    'page callback' => 'drupal_get_form',
-    'page arguments' => array('formblock_settings_form'),
-    'title' => user_access('access administration pages') ? 'Form Block' : 'Form Block settings',
-  );
-  return $items;
-}
-
-// Create admin page form
-function formblock_settings_form() {
-  $form['form_block']['form_block_redirect_regiser'] = array(
-    '#prefix' => 'TODO: Place this form item in the user register block settings.',
-    '#title' => t('Redirect user back to originating page on <strong>register.</strong>'),
-    '#type' => 'checkbox',
-    '#default_value' => variable_get('form_block_redirect_regiser', 0),
-    '#description' => t('If the user registration form block is placed on a page the user will be redirect back to that page after registration is processed.'),
-  );
-  $form = system_settings_form($form);
-  return $form;
-}
-
-// Redirect user back to page they came from with the form block.
-function formblock_user($type, &$edit, &$account, $category = NULL) {
-  switch ($type) {
-    case 'register':
-      if(variable_get('form_block_redirect_regiser', false)) {
-        $form['#redirect']= check_plain($_GET['q']);
-      }
-  }
-  return $form;
-}
\ No newline at end of file
