[-] MO : BugFix : #PSCFV-2830 : Product Comments module does not publish guest comment, returns exception.

This commit is contained in:
vChabot
2012-06-14 13:32:53 +00:00
parent 78884d1f7c
commit eafa901c65
@@ -68,7 +68,7 @@ class ProductCommentsDefaultModuleFrontController extends ModuleFrontController
$result = true;
$id_guest = 0;
$id_customer = $this->context->customer->id;
if ($id_customer)
if (!$id_customer)
$id_guest = $this->context->cookie->id_guest;
$errors = array();
@@ -99,10 +99,10 @@ class ProductCommentsDefaultModuleFrontController extends ModuleFrontController
$comment = new ProductComment();
$comment->content = strip_tags(Tools::getValue('content'));
$comment->id_product = (int)Tools::getValue('id_product');
$comment->id_customer = $id_customer;
$comment->id_customer = (int)$id_customer;
$comment->id_guest = $id_guest;
$comment->customer_name = Tools::getValue('customer_name');
if (!$comment->id_customer)
if (!$comment->customer_name)
$comment->customer_name = pSQL($this->context->customer->firstname.' '.$this->context->customer->lastname);
$comment->title = Tools::getValue('title');
$comment->grade = 0;