Since I installed this wonderful contribution I have a serious problem: a client can register

itself as many times as desired¡¡¡¡


To correct this we must look in catalog/create_account.php

// PWA BOF 2b
$check_email_query = tep_db_query("select count(*) as total from " . TABLE_CUSTOMERS . "

where customers_email_address = '" . tep_db_input($email_address) . "' and guest_account !=

'1'");
// PWA EOF 2b


and replace with the original text:

$check_email_query = tep_db_query("select count(*) as total from " . TABLE_CUSTOMERS . "

where customers_email_address = '" . tep_db_input($email_address) . "'");


That's all ¡¡¡

Best Regards

reflex-ocasion

More...