Quote Originally Posted by mc12345678 View Post
Line 25 of admin/easypopulate_4_attrib.php change from:
Code:
$query = $db->bindVars($query, ':v_products_model', $v_products_model, 'string');
To:
Code:
$query = $db->bindVars($query, ':v_products_model:', $v_products_model, 'string');
Adding a colon (:) after :v_products_model.
Ugh, apparently same issue on lines 97 and 98:
Code:
					$sql = $db->bindVars($sql, ':v_products_options_name:', $v_products_options_name[$l_id], 'string');
					$sql = $db->bindVars($sql, ':v_products_options_type:', $v_products_options_type, 'integer');
Change(s) shown: https://github.com/mc12345678/EasyPo...99d7d0671fc80b