diff options
author | BlueRaja <BlueRaja.admin@gmail.com> | 2013-03-07 19:29:48 -0600 |
---|---|---|
committer | BlueRaja <BlueRaja.admin@gmail.com> | 2013-03-07 19:29:48 -0600 |
commit | 827c767fc3025877ad0d1d23e0f15bc35d24b14a (patch) | |
tree | f9a29e8067d93e64bacb309fc37d771d588593a7 /includes/datas.php | |
parent | f9446287d424e9c094e174b4c39d88b03efe7604 (diff) | |
parent | 9cbfc1cb331ac5ce38a91992183ba0b50e3b50dd (diff) | |
download | pathery-827c767fc3025877ad0d1d23e0f15bc35d24b14a.tar.xz |
ohgodwhathassciencedone
Diffstat (limited to 'includes/datas.php')
-rw-r--r-- | includes/datas.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/includes/datas.php b/includes/datas.php index 3d51983..1db0060 100644 --- a/includes/datas.php +++ b/includes/datas.php @@ -809,6 +809,7 @@ function getScores($mapID, $pageNumber = 1, $pageDivide = 10) { timediff(solutions.dateModified, TIMESTAMP(CURDATE())) as diff, users.displayName as display, solutions.moves as moves, + solutions.championPointsWorth as points, users.ID as ID, users.displayColor, users.wallColor, @@ -873,7 +874,8 @@ function getScores($mapID, $pageNumber = 1, $pageDivide = 10) { $medal = 'gold'; // if is blind map. - if ($isBlindMap AND $myBestMoves < $moves) $row['moves'] = '???'; + if ($isBlindMap AND $myBestMoves < $moves) + $row['moves'] = '???'; $output['users'][$i] = $row; $output['users'][$i]['secondsSinceScored'] = $secondsSinceScored; |