/**
  *
  * Gets data from the Leaderboard class for this widget
  */
 public function getLeaderboardData(&$dbr, $starttimestamp)
 {
     $data = Leaderboard::getRCEdits($starttimestamp);
     //for some reason we shouldn't be sorting if its RC data
     //arsort($data);
     return $data;
 }