### Eclipse Workspace Patch 1.0
#P contributions
Index: modules/googleverify/googleverify.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/googleverify/googleverify.module,v
retrieving revision 1.1
diff -u -r1.1 googleverify.module
--- modules/googleverify/googleverify.module	20 Sep 2006 09:32:48 -0000	1.1
+++ modules/googleverify/googleverify.module	22 Nov 2006 23:44:30 -0000
@@ -22,6 +22,14 @@
 		'access' => TRUE,
 		'callback' => 'googleverify_doit',
 	);
+	$items[] = array(
+	    'path' => 'admin/settings/googleverify',
+	    'title' => t('Google Verify'),
+		'description' => t('Configure google verify settings.'),
+	    'callback' => 'drupal_get_form',
+	    'callback arguments' => 'googleverify_admin',
+	    'type' => MENU_NORMAL_ITEM
+	   );
 	return $items;
 }
 
@@ -30,7 +38,7 @@
 	return "Verification Active";
 }
 
-function googleverify_settings()
+function googleverify_admin()
 {
 	$form = array();
 	$form['google_verify_meta'] = array(
@@ -45,5 +53,5 @@
 		'#default_value' => variable_get('google_verify_page',''),
 		'#description' => t("This is the filename for the verification page"),
 	);
-	return $form;
+	return system_settings_form($form);
 };
Index: modules/googleverify/googleverify.info
===================================================================
RCS file: modules/googleverify/googleverify.info
diff -N modules/googleverify/googleverify.info
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ modules/googleverify/googleverify.info	1 Jan 1970 00:00:00 -0000
@@ -0,0 +1,3 @@
+; $Id$
+name = GoogleVerify
+description = Provides Google Webmaster Tools verification facilities
