diff --git a/helpers/position.php b/helpers/position.php index 30a3d11..be8bb52 100644 --- a/helpers/position.php +++ b/helpers/position.php @@ -158,7 +158,7 @@ LEFT JOIN `" . self::$db->table('users') . "` u ON (p.user_id = u.id) LEFT JOIN `" . self::$db->table('tracks') . "` t ON (p.track_id = t.id) $where - ORDER BY p.time DESC LIMIT 1"; + ORDER BY p.time, p.id DESC LIMIT 1"; $this->loadWithQuery($query, $params); return $this; } @@ -190,7 +190,7 @@ LEFT JOIN `" . self::$db->table('users') . "` u ON (p.user_id = u.id) LEFT JOIN `" . self::$db->table('tracks') . "` t ON (p.track_id = t.id) $where - ORDER BY p.time"; + ORDER BY p.time, p.id"; $result = self::$db->query($query); if ($result === false) { return false;