Database query failed: Disk full (/tmp/#sql_3df_0.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Last SQL query: SELECT p.type, gp.person_id, p.fname, p.image, p.lname, if(t.short!='',t.short, t.name) as name, SUM( gp.points ) AS golovi, COUNT( gp.game_id ) AS utakmice
FROM `game_players` AS gp
INNER JOIN people AS p ON p.id = gp.person_id
INNER JOIN teams AS t ON t.id = gp.team_id
INNER JOIN games AS g ON g.id = gp.game_id
WHERE g.status IN ('COMPLETE','IN_PROGRESS') and g.comp_id =216 GROUP BY person_id
HAVING golovi >0
ORDER BY `golovi` DESC, utakmice, p.lname