Commit 5150c25810a7fec59bb08bd5870017fdf5a25e18

Authored by Alex Savenko
1 parent 64701daa

remarketing

Showing 1 changed file with 1 additions and 2 deletions   Show diff stats
console/controllers/FeedController.php
... ... @@ -16,7 +16,6 @@ use yii\web\NotFoundHttpException;
16 16 use common\modules\product\models\Product;
17 17 use common\modules\product\models\ProductVariant;
18 18  
19   -
20 19 class FeedController extends Controller
21 20 {
22 21 private $idList = [];
... ... @@ -71,7 +70,7 @@ class FeedController extends Controller
71 70  
72 71 $handle = fopen($dirName .'/'. $filename, "w");
73 72  
74   - $content[] = ['ID', 'ID2', 'Item Category', 'Item title', 'Price', 'Final URL', 'Image URL'];
  73 + $content[] = ['ID', 'ID2', 'Item Category', 'Item title', 'Price', 'Image URL', 'Final URL'];
75 74  
76 75 foreach ($this->getProducts() as $product) {
77 76 $this->createRow($product, $content);
... ...