this package removed unnecessary line at the update product table block:

from this:
-------
tep_db_query($query);
$v_products_id = tep_db_insert_id();

to this:
-------
tep_db_query($query);

More...