Commit 7f2d2d4f516155c08d0c625bbec2e530870a393a
1 parent
0b998826
remarketing
Showing
1 changed file
with
0 additions
and
1 deletions
Show diff stats
console/controllers/FeedController.php
| ... | ... | @@ -32,7 +32,6 @@ class FeedController extends Controller |
| 32 | 32 | return Product::find() |
| 33 | 33 | ->innerJoin(ProductVariant::tableName(), ProductVariant::tableName() .'.product_id = '. Product::tableName() .'.product_id') |
| 34 | 34 | ->where(['and', ProductVariant::tableName().'.status = 0', ProductVariant::tableName().'.stock > 0']) |
| 35 | - ->limit(3) | |
| 36 | 35 | ->all(); |
| 37 | 36 | } |
| 38 | 37 | ... | ... |