Index: openid_ax.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/openid_ax/openid_ax.module,v
retrieving revision 1.8
diff -u -p -r1.8 openid_ax.module
--- openid_ax.module	10 Aug 2008 18:33:57 -0000	1.8
+++ openid_ax.module	9 Oct 2008 21:19:41 -0000
@@ -15,56 +15,56 @@ function openid_ax_menu() {
     'type' => MENU_CALLBACK,
     'file' => 'openid_ax.pages.inc',
     'access callback' => TRUE
-    );
+  );
   $items['openid/ax/continue'] = array(
     'title' => 'OpenID Attribute Exchange',
     'page callback' => 'openid_ax_continue',
     'access callback' => TRUE,
     'type' => MENU_CALLBACK,
     'file' => 'openid_ax.pages.inc'
-    );
+  );
   $items['openid/ax/send'] = array(
     'title' => 'OpenID Attribute Exchange',
     'page callback' => 'openid_ax_send',
     'access callback' => TRUE,
     'type' => MENU_CALLBACK,
     'file' => 'openid_ax.pages.inc'
-    );
+  );
   $items['user/%user/persona'] = array(
     'title' => 'OpenID AX Personas',
     'page callback' => 'openid_ax_persona',
     'access callback' => TRUE,
     'type' => MENU_LOCAL_TASK,
     'file' => 'openid_ax.pages.inc'
-    );
+  );
   $items['user/%user/persona/create'] = array(
     'title' => 'Create OpenID AX Personas',
     'page callback' => 'openid_ax_create_persona',
     'access callback' => TRUE,
     'type' => MENU_LOCAL_TASK,
     'file' => 'openid_ax.pages.inc'
-    );
+  );
   $items['user/%user/persona/manage'] = array(
     'title' => 'Manage OpenID AX Personas',
     'page callback' => 'openid_ax_manage_personas',
     'access callback' => TRUE,
     'type' => MENU_LOCAL_TASK,
     'file' => 'openid_ax.pages.inc'
-    );
+  );
   $items['user/%user/persona/rename'] = array(
     'title' => 'Rename OpenID AX Personas',
     'page callback' => 'openid_ax_rename_personas',
     'access callback' => TRUE,
     'type' => MENU_CALLBACK,
     'file' => 'openid_ax.pages.inc'
-    );
+  );
   $items['user/%user/persona/delete'] = array(
     'title' => 'Delete OpenID AX Personas',
     'page callback' => 'openid_ax_persona_delete',
     'access callback' => TRUE,
     'type' => MENU_CALLBACK,
     'file' => 'openid_ax.pages.inc'
-    );
+  );
   return $items;
 }
 
