/**
* The main store product page.
*
* @author Jeff Ornduff
* @version $Id: product.jhtml,v 1.4 2004/07/01 15:15:10 jornduff Exp $
*/
/*
* If a promotion code was specified then add it to the catalog promotions.
*/
String promotionCode = request.getParameter("promo");
if (promotionCode!=null && promotionCode.length()>0) {
meredith.commerce.promo.CatalogPromos catalogPromos = (meredith.commerce.promo.CatalogPromos) request.resolveName("/meredith/commerce/promo/CatalogPromos");
catalogPromos.addPromotion(promotionCode);
}
/* Do nothing */
request.setParameter("pageRequest", request.getRequestURIWithQueryString());