shopware5 / SwagMigration

Shopware 5 Migration (Import from third party systems)
http://store.shopware.com/en/swag00426/migrating-from-other-shop-systems-to-shopware-4.html
MIT License
17 stars 40 forks source link

Uppercase SQL Statement #7

Closed d3br0wn closed 8 years ago

d3br0wn commented 8 years ago

SwagMigration/Components/DbServices/Import/CustomerImporter.php - start at line 582

Uppercase can cause problems here:

$sql = 'DELETE FROM S_CAMPAIGNS_MAILADDRESSES WHERE EMAIL = ' . $customer['email'];

$sql = 'SELECT ID FROM S_CAMPAIGNS_MAILADDRESSES WHERE EMAIL = ' . $customer['email'];

mitelg commented 8 years ago

fixed with 53930570774