shuber 2005/10/03 18:15:49 CEST
Modified files:
src/view/jsp categories.jsp
Log:
Correct CategoryBean fully qualified name that was not correct.
Revision Changes Path
1.25 +2 -2 corporate_portal_templates/src/view/jsp/categories.jsp
http://jahia.mine.nu:8080/cgi-bin/cvsweb.cgi/corporate_portal_templates/src/view/jsp/categories.jsp.diff?r1=1.24&r2=1.25&f=h
Index: categories.jsp
===================================================================
RCS file:
/home/cvs/repository/corporate_portal_templates/src/view/jsp/categories.jsp,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- categories.jsp 3 Aug 2005 08:11:08 -0000 1.24
+++ categories.jsp 3 Oct 2005 16:15:49 -0000 1.25
@@ -50,13 +50,13 @@
<%int t=0;%>
<logic:iterate name="currentCategory" property="childCategoryBeans"
id="curCategoryBean" indexId="idx">
<%t++;if (t==1){%>Sub Categories<ul><%}%>
- <% if (((org.jahia.services.categories.CategoryBean)
pageContext.findAttribute("curCategoryBean")).getTitle() == null){ %>
+ <% if (((org.jahia.data.beans.CategoryBean)
pageContext.findAttribute("curCategoryBean")).getTitle() == null){ %>
<bean:define name="curCategoryBean"
id="curCategoryBeanTitle" property="category.key" />
<li><bean:write name="curCategoryBeanTitle"/></li>
<% } %>
- <% if (((org.jahia.services.categories.CategoryBean)
pageContext.findAttribute("curCategoryBean")).getTitle() != null){ %>
+ <% if (((org.jahia.data.beans.CategoryBean)
pageContext.findAttribute("curCategoryBean")).getTitle() != null){ %>
<bean:define name="curCategoryBean"
id="curCategoryBeanTitle2" property="title" />
<li><bean:write name="curCategoryBeanTitle2"/></li>
<% } %>