Fixed regression in all time leaderboard

This commit is contained in:
Zachary Doll 2013-12-02 17:17:33 -06:00
parent dd58bfb5d8
commit 1084e220cb

View File

@ -22,6 +22,7 @@ class LeaderBoardModule extends Gdn_Module {
->Join('UserPoints up', 'u.UserID = up.UserID') ->Join('UserPoints up', 'u.UserID = up.UserID')
->Where('up.SlotType', $SlotType) ->Where('up.SlotType', $SlotType)
->Where('up.TimeSlot', gmdate('Y-m-d', Gdn_Statistics::TimeSlotStamp($SlotType))) ->Where('up.TimeSlot', gmdate('Y-m-d', Gdn_Statistics::TimeSlotStamp($SlotType)))
->Where('up.Source', 'Total')
->OrderBy('up.Points', 'desc') ->OrderBy('up.Points', 'desc')
->Limit(10, 0) ->Limit(10, 0)
->Get() ->Get()