From: Roland Haeder Date: Sat, 5 Sep 2015 10:48:14 +0000 (+0200) Subject: Don't miss to close divs! X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=77250d0a5d63a1221e6837bb266af2faa1989393;p=pizzaservice-core.git Don't miss to close divs! Signed-off-by:Roland Häder --- diff --git a/PizzaService-ejb/src/java/org/mxchange/pizzaapplication/tags/basket/MiniBasketTag.java b/PizzaService-ejb/src/java/org/mxchange/pizzaapplication/tags/basket/MiniBasketTag.java index 3d04902..3dfe70a 100644 --- a/PizzaService-ejb/src/java/org/mxchange/pizzaapplication/tags/basket/MiniBasketTag.java +++ b/PizzaService-ejb/src/java/org/mxchange/pizzaapplication/tags/basket/MiniBasketTag.java @@ -31,6 +31,7 @@ import org.mxchange.jshopejb.beans.remote.shop.ShopSessionBeanRemote; * A basket tag that outputs a small basket and a link to the full basket website. * * @author Roland Haeder + * TODO: Does JSF use "foreign" tags like this? */ public class MiniBasketTag extends BodyTagSupport implements BasketTag { /** @@ -133,6 +134,9 @@ public class MiniBasketTag extends BodyTagSupport implements BasketTag { throw new JspException(ex); } + // Close div here + out.append("\n"); //NOI18N + try { // Get output instance and write it this.pageContext.getOut().print(out.toString());