this is what I did.
Edit this file (I used Wordpad)
/includes/modules/pages/product_reviews_write/header_php.php
change:
PHP Code:
$sql = $db->bindVars($sql, ':productsID', $_GET['products_id'], 'integer');
$sql = $db->bindVars($sql, ':customersID', $_SESSION['customer_id'], 'integer');
$sql = $db->bindVars($sql, ':customersName', $customer->fields['customers_firstname'] . ' ' . $customer->fields['customers_lastname'], 'string');
$sql = $db->bindVars($sql, ':rating', $rating, 'string');
$db->Execute($sql);
to:
PHP Code:
$sql = $db->bindVars($sql, ':productsID', $_GET['products_id'], 'integer');
$sql = $db->bindVars($sql, ':customersID', $_SESSION['customer_id'], 'integer');
$sql = $db->bindVars($sql, ':customersName', $customer->fields['customers_firstname'], 'string');
$sql = $db->bindVars($sql, ':rating', $rating, 'string');
$db->Execute($sql);