From 3240d65d1e09e3ca5ddf038e7c06ea48f03da4aa Mon Sep 17 00:00:00 2001 From: Alex Date: Tue, 6 Dec 2016 13:18:23 +0200 Subject: [PATCH] remarketing --- console/controllers/FeedController.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/console/controllers/FeedController.php b/console/controllers/FeedController.php index 399acdb..16e12f7 100644 --- a/console/controllers/FeedController.php +++ b/console/controllers/FeedController.php @@ -44,7 +44,6 @@ class FeedController extends Controller $product->category->category_id, $product->category->name, $product->name, - $product->description, $product->price.' UAH', ]; } @@ -67,8 +66,7 @@ class FeedController extends Controller $handle = fopen($dirName .'/'. $filename, "w"); - $content[] = ['ID', 'ID2', 'Item Category', 'Item title', 'Item description', 'Price']; - $content[] = ['ID', 'ID2', 'Item Category', 'Item title', 'Item description', 'Price']; + $content[] = ['ID', 'ID2', 'Item Category', 'Item title', 'Price']; foreach ($this->getProducts() as $product) { $this->createRow($product, $content); -- libgit2 0.21.4