Index: ga_login.module
===================================================================
--- ga_login.module	(revision 1761)
+++ ga_login.module	(working copy)
@@ -35,15 +35,26 @@
     'access arguments' => array(1),
     'file' => 'ga_login.pages.inc',
   );
+  $items['user/%user/ga_login/view'] = array(
+    'type' => MENU_DEFAULT_LOCAL_TASK,
+    'title' => 'GA login',
+    'page callback' => 'drupal_get_form',
+    'page arguments' => array('ga_login_create_form', 1),
+    'access callback' => 'ga_login_create_access',
+    'access arguments' => array(1),
+    'file' => 'ga_login.pages.inc',
+    'weight' => 0,
+  );
 
   $items['user/%user/ga_login/delete'] = array(
     'type' => MENU_LOCAL_TASK,
-    'title' => 'GA login',
+    'title' => 'GA login delete',
     'page callback' => 'drupal_get_form',
     'page arguments' => array('ga_login_delete_form', 1),
     'access callback' => 'ga_login_delete_access',
     'access arguments' => array(1),
     'file' => 'ga_login.pages.inc',
+    'weight' => 1,
   );
 
   $items['admin/config/people/ga_login'] = array(

