поставил модуль RSS. Все выводит кроме картинок
config->get('latest_products_rss_status')) { $output = ''; $output .= ''; $output .= ''; $output .= '' . $this->config->get('config_name') . ''; $output .= '' . $this->config->get('config_meta_description') . ''; $output .= '' . HTTP_SERVER . ''; $this->load->model('catalog/product'); $this->load->model('localisation/currency'); $limit = $this->config->get('latest_products_rss_limit') ? $this->config->get('latest_products_rss_limit') : 100; $products = $this->model_catalog_product->getLatestProducts($limit); if (isset($this->request->get['currency'])) { $currency = $this->request->get['currency']; } else { $currency = $this->currency->getCode(); } foreach ($products as $product) { if ($product['description']) { $output .= ''; $output .= '' . html_entity_decode($product['name'], ENT_QUOTES, 'UTF-8') . ''; $output .= '' . HTTP_SERVER . 'index.php?route=product/product&product_id=' . $product['product_id'] . ''; $special = $this->model_catalog_product->getProductSpecial($product['product_id']); if ($special) { $price = $this->currency->format($this->tax->calculate($special, $product['tax_class_id']), $currency, FALSE, TRUE); } else { $price = $this->currency->format($this->tax->calculate($product['price'], $product['tax_class_id']), $currency, FALSE, TRUE); } $p = htmlspecialchars('[b]Price: ' . $price . '[/b]
'); $output .= '' . $p . $product['description'] . ''; $output .= ''; } } $output .= ''; $output .= ''; $this->response->addHeader('Content-Type: application/rss+xml'); $this->response->setOutput($output, 0); } } } ?>
подскажите в какую строку прописать код картинок