Hi,

We noticed the following snippet of code no longer works in 6.2.0:

<%@taglib uri="http://java.sun.com/jsp/jstl/core"; prefix="c" %>
<%@taglib uri="/struts-tags" prefix="s"%>

<c:set var="listType" value="TEST" scope="request" />
<s:set var="lcType" value="#request.listType.toLowerCase()" />

<h1>${listType} / ${lcType}<h1>


In the previous version of Struts we would get:

<h1>TEST / test<h1>

but with 6.2.0 we get:

<h1>TEST / <h1>

It seems like the set tag is not picking up the value for the listType request 
attribute.  Any ideas what could be wrong?

Thanks,

Wyatt


Reply via email to