? LICENSE.txt Index: userpoints.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/userpoints/userpoints.module,v retrieving revision 1.61 diff -u -r1.61 userpoints.module --- userpoints.module 28 Jan 2008 17:08:44 -0000 1.61 +++ userpoints.module 28 Jan 2008 22:24:52 -0000 @@ -1221,7 +1244,7 @@ } drupal_set_title(t($cat) ." ". t("!points", userpoints_translation())); - return theme('userpoints_list_users', $rows, $tid, $pager_limit); + return theme('userpoints_list_users', $header, $rows, $tid, $pager_limit); } /* @@ -1229,7 +1252,7 @@ * individual rows are themed with theme_userpoints_list_users_rows * Returns: HTML */ -function theme_userpoints_list_users(&$rows, &$tid, &$pager_limit) { +function theme_userpoints_list_users($header, &$rows, &$tid, &$pager_limit) { //If there is only one category there is no sense in display the category filter dropdown if ( count(userpoints_get_categories()) > 1) { $output = drupal_get_form('userpoints_filter_cat_select', 'userpoints/', $tid);