Userpoints laat 0 points zien in Profile

Probleem: 
Als je de Userponts module gebruikt, laat de Profile van een user altijd 0 points zien.

Door userpoints.module aan te passen, verhelp je dit probleem.

Verander :

 case 'view':
      // Get the points for the user
      $points = userpoints_get_current_points($account->uid);

in :

 case 'view':
      // Get the points for the user
      $points = userpoints_get_current_points($account->uid,'all');

view counter