Всем привет, кто сталкивался где отключить фильтрацию html при выводе отзывов?
+ ко всему почему в базу пишет такой вариант:
<img src="http://imagecms.cmsbox.pro/image/smile/icont2.gif">
вместо:
<img src="http://imagecms.cmsbox.pro/image/smile/icont2.gif">
Вывод осуществляется с помощью переменных <?php echo $review['text']; ?> product.tpl
кусок кода из product.php
$this->data['reviews'] = array();
$review_total = $this->model_catalog_review->getTotalReviewsByProductId($this->request->get['product_id']);
$results = $this->model_catalog_review->getReviewsByProductId($this->request->get['product_id'], ($page - 1) * 5, 5);
foreach ($results as $result) {
$this->data['reviews'][] = array(
'author' => $result['author'],
'text' => $result['text'],
'rating' => (int)$result['rating'],
'reviews' => sprintf($this->language->get('text_reviews'), (int)$review_total),
'date_added' => date($this->language->get('date_format_short'), strtotime($result['date_added']))
);
}
Необходимо решение в каком месте отключить фильтрацию.