fix select field list

This commit is contained in:
Akinwale Ariwodola 2020-10-28 15:43:38 +01:00
parent aad314491b
commit c003a6b23a

View file

@ -220,9 +220,8 @@ class MainController extends AppController {
if (isset($claim->publisher) || $claim->claim_type == 1) {
// find more claims for the publisher
$moreClaimsQuery = $this->Claims->find()->select([
'claim_id', 'bid_state', 'price', 'fee', 'fee_currency', 'is_nsfw', 'claim_type',
'name', 'title', 'description', 'content_type', 'language', 'author', 'license',
'content_type'
'claim_id', 'bid_state', 'fee', 'fee_currency', 'is_nsfw', 'claim_type', 'name',
'title', 'description', 'content_type', 'language', 'author', 'license', 'content_type'
])->select(['publisher' => 'C.name'])->leftJoin(['C' => 'claim'], ['C.claim_id = Claims.publisher_id'])->where(['Claims.claim_type' => 1, 'Claims.id <>' => $claim->id, 'Claims.publisher_id' => isset($claim->publisher) ? $claim->publisher_id : $claim->claim_id])->limit(9);
if (isset($claim->publisher) && $claim->publisher->claim_id !== 'f2cf43b86b9d70175dc22dbb9ff7806241d90780') { // prevent ORDER BY for this particular claim
$moreClaimsQuery = $moreClaimsQuery->order(['Claims.fee' => 'DESC', 'RAND()' => 'DESC']);