The following code in includes/modules/product_listing.php

echo zen_draw_form('multiple_products_cart_quantity', zen_href_link(FILENAME_DEFAULT, zen_get_all_get_params(array('action')) . 'action=multiple_products_add_product'), 'post', 'enctype="multipart/form-data"');
produces the add to cart button

<form name="multiple_products_cart_quantity" action="http://domain.com/zen/index.php?main_page=index&amp;cPath=4&amp;sort=20a&amp;action=multiple_products_ add_product" method="post" enctype="multipart/form-data">
when you're looking at a list of products.

Does anyone know how to change it so that the cart button looks like this:


<form name="multiple_products_cart_quantity" action="http://domain.com/zen/index2.php?main_page=index&amp;cPath=4&amp;sort=20a&amp;action=multiple_products_add_p roduct" method="post" enctype="multipart/form-data">
Thanks!