eka7a' Alıntı:Kontrol dosyası: catalog/controller/product/product.php
Veritabanı dosyası: catalog/model/catalog/review.php
Tema dosyası: catalog/view/theme/default/template/product/product.tpl
public function addReview($product_id, $data) {
$this->db->query("INSERT INTO " . DB_PREFIX . "review SET author = '" . $this->db->escape($data['name']) . "', customer_id = '" . (int)$this->customer->getId() . "', product_id = '" . (int)$product_id . "', text = '" . $this->db->escape(strip_tags($data['text'])) . "', rating = '" . (int)$data['rating'] . "', date_added = NOW()");
mail('xxxxxxxxx@gmail.com', "Yorumcu " . $this->db->escape($data['name']), " İsim : " . $this->db->escape($data['name']) . " Mesaj : " . $this->db->escape(strip_tags($data['text'])) . " Puan : " . (int)$data['rating']);