--- profile_role.module	2008-12-08 21:23:19.000000000 -0600
+++ profile_role.module	2009-01-22 10:42:27.000000000 -0600
@@ -55,6 +55,10 @@
  * @return boolean Access.
  */
 function profile_role_access_category($user, $category) {
+  // Is it inconsistent to initially check based on $user->roles and then return based on $GLOBALS['user']?
+  if ($GLOBALS['user']->uid == 1) {
+    return TRUE;
+  }
   $category_roles = profile_role_get_roles();
   if (isset($category_roles[$category])) {
     foreach ($category_roles[$category] as $rid) {
