diff --git a/config/sphinx.conf.txt b/config/sphinx.conf.txt index 3ff4121..13e48d2 100644 --- a/config/sphinx.conf.txt +++ b/config/sphinx.conf.txt @@ -36,7 +36,9 @@ source hostImage : common SELECT hostImage.hostImageId, hostImage.rank, hostImage.uri, host.name, \ (SELECT CONCAT_WS(' ', hostImageDescription.alt, hostImageDescription.title) \ FROM hostImageDescription \ - WHERE hostImageDescription.hostImageId = hostImage.hostImageId ORDER BY hostImageDescription.timeAdded DESC LIMIT 1) AS imageDescription \ + WHERE hostImageDescription.hostImageId = hostImage.hostImageId \ + ORDER BY hostImageDescription.timeAdded \ + DESC LIMIT 1) AS imageDescription \ FROM hostImage \ JOIN host ON (host.hostId = hostImage.hostId) \ WHERE host.status = '1' AND hostImage.httpCode = 200 AND hostImage.timeBanned IS NULL \