﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc	blockedby	blocking
1288	includes/classes/class.newsletter.php	Volker Strähle		"ca. Zeile 162
{{{
            $check_customer_mail_query = xtc_db_query(""SELECT customers_id,
                                                              customers_status,
                                                              customers_firstname,
                                                              customers_lastname,
                                                              customers_email_address
                                                         FROM "".TABLE_CUSTOMERS.""
                                                        WHERE customers_email_address = '"".xtc_db_input($mail).""'
                                                      "");
            if (xtc_db_num_rows($check_customer_mail_query) > 0) {
              $check_customer = xtc_db_fetch_array($check_customer_mail_query);
              $customers_id = $check_customer['customers_id'];
              $customers_status = $check_customer['customers_status'];
              $customers_firstname = $check_customer['customers_firstname'];
              $customers_lastname = $check_customer['customers_lastname'];
            } else {
              $customers_id = '0';
              $customers_status = '1';
              $customers_firstname = TEXT_CUSTOMER_GUEST;
              $customers_lastname = '';
            }

}}}
 Das vermischt meiner Meinung nach alte, nicht gelöschte Gastkonten mit einem später angelegten regulären Kundenkonto. In die Tabelle newsletter_recipients würde der Kunde dann als Gast eingetragen, evtl. auch mit einem früher anders eingetragenen Namen."	Bug/Fehler	new	normal		Module	2.0.3.0					
