Index: userpoints_top_contributors.module =================================================================== --- userpoints_top_contributors.module (revision 1492) +++ userpoints_top_contributors.module (working copy) @@ -13,13 +13,13 @@ $items['userpoints/list/all'] = array( 'page callback' => 'userpoints_top_contributors_list', 'title' => t('Top Contributors'), - 'access arguments' => array('admin userpoints'), + 'access arguments' => array(USERPOINTS_PERM_VIEW), 'type' => MENU_CALLBACK, - ); + ); $items['userpoints/list/period'] = array( 'page callback' => 'userpoints_top_contributors_list', 'title' => t('Top Contributors: '. format_interval(variable_get(userpoints_top_contributors_period, 86400))), - 'access arguments' => array('admin userpoints'), + 'access arguments' => array(USERPOINTS_PERM_VIEW), 'type' => MENU_CALLBACK, ); return $items;