Index: userpoints.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/userpoints/userpoints.module,v
retrieving revision 1.67.2.44
diff -u -r1.67.2.44 userpoints.module
--- userpoints.module	15 Jul 2009 23:04:39 -0000	1.67.2.44
+++ userpoints.module	18 Jul 2009 19:33:28 -0000
@@ -175,6 +175,9 @@
  */
 function userpoints_access_my_points() {
   global $user;
+  if ($user->uid === 1 || user_access('USERPOINTS_PERM_ADMIN')) {
+    return TRUE;
+  }
   return ( _userpoints_user_exists($user->uid) && 
 					((user_access(USERPOINTS_PERM_VIEW) && user_is_logged_in()) || user_access(USERPOINTS_PERM_VIEW_OWN)) 
 				 );

