]> git.mxchange.org Git - pizzaservice-war.git/commitdiff
Use lesser getFoo() in EL code
authorRoland Haeder <roland@mxchange.org>
Fri, 28 Aug 2015 09:43:20 +0000 (11:43 +0200)
committerRoland Haeder <roland@mxchange.org>
Fri, 28 Aug 2015 09:43:20 +0000 (11:43 +0200)
Signed-off-by:Roland Häder <roland@mxchange.org>

web/admin/category.jsp
web/static/admin/admin_category_selection_box.jsp
web/static/admin/admin_parent_category_selection_box.jsp

index 1544df0bd1bf7e283f83a6e087626b6a0967b7ae..089eb06f1756478b06b8ade7b02a551c4d118ede 100644 (file)
@@ -63,7 +63,8 @@
                                                        <c:forEach var="category" items="${controller.categories}">
                                                        <tr>
                                                                <td>
-                                                                       <input class="input" type="checkbox" name="<%=CategoryFrontend.COLUMN_ID%>[${category.getCategoryId()}]" value="1" />
+                                                                       ${category.categoryId}:
+                                                                       <input class="input" type="checkbox" name="<%=CategoryFrontend.COLUMN_ID%>[${category.categoryId}]" value="1" />
                                                                </td>
                                                                <td>
                                                                        ${category.decodedTitle}
index a125fd69aef2536978f6302e857c72b19e02556e..9d280a689ed7af963806f12b807917266fab973c 100644 (file)
@@ -12,6 +12,6 @@
 
 <select class="select" name="<%=CategoryFrontend.COLUMN_ID%>" size="1">
        <c:forEach var="category" items="${controller.categories}">
-               <option value="${category.getCategoryId()}">${category.getDecodedTitle()}</option>
+               <option value="${category.categoryId}">${category.decodedTitle}</option>
        </c:forEach>
 </select>
index 7dae1c089bbf6b12b1809b76ff9c6038e32dbd7e..b2e379b49416f02d26ccdd5232a2e1aba37d4c7e 100644 (file)
@@ -13,6 +13,6 @@
 <select class="select" name="<%=CategoryFrontend.COLUMN_PARENT%>" size="1">
        <option value="">Ist oberste Kategorie</option>
        <c:forEach var="category" items="${controller.categories}">
-               <option value="${category.getCategoryId()}">${category.getDecodedTitle()}</option>
+               <option value="${category.categoryId}">${category.decodedTitle}</option>
        </c:forEach>
 </select>