In edit_cart_v1.3 (good for v138a), the two main files to edit are
/includes/templates/template_default/templates/tpl_product_info_display.php
/includes/templates/template_default/templates/tpl_shopping_cart_default.php
In
/includes/templates/template_default/templates/tpl_product_info_display.php
Line 19 of v139c is now
echo zen_draw_form('cart_quantity', zen_href_link(zen_get_info_page($_GET['products_id']), zen_get_all_get_params(array('action')) . 'action=add_product', $request_type), 'post', 'enctype="multipart/form-data"') . "\n";
Incorporating edit_cart_v1.3, this line is replaced by
echo zen_draw_form('cart_quantity', zen_href_link(zen_get_info_page($_GET['products_id']), zen_get_all_get_params(array('action')) . 'action=' . $cartAction), 'post', 'enctype="multipart/form-data"') . "\n";
However in
/includes/templates/template_default/templates/tpl_shopping_cart_default.php
Line 33 of v139c is now
<?php echo zen_draw_form('cart_quantity', zen_href_link(FILENAME_SHOPPING_CART, '
action=update_product', $request_type)); ?>
My question is: should there also be a $request_type, or something similar, in tpl_product_info_display.php, or has 139c tpl_shopping_cart_default.php taken care of this.