diff --git a/sites/all/modules/userpoints/userpoints.module b/sites/all/modules/userpoints/userpoints.module
index 0f22d8f..1091f72 100644
--- a/sites/all/modules/userpoints/userpoints.module
+++ b/sites/all/modules/userpoints/userpoints.module
@@ -1476,7 +1476,7 @@ function userpoints_block_view($delta) {
       $rows[] =
               array(
                   array('data' => theme('username', array('account' => user_load($data->uid)))),
-                  array('data' => $data->points, 'align' => 'right'));
+                  array('data' => number_format($data->points), 'align' => 'right'));
     }
     $header = array(t('User'), t('!Points', userpoints_translation()));
     $content = theme('table', array('header' => $header, 'rows' => $rows));