In our app, its causing some of our CSS styles to be flaky when we set trimSpaces to be true. (To work around, we can just put something static in between the two adjacent EL expressions.)
-------------------------------
When trimSpaces is set to true:
<init-param>
<param-name>trimSpaces</param-name>
<param-value>true</param-value>
</init-param>
The following JSP code:
<div class="${style1} ${style2}" >evaluates to:
<div class="dynamicStyleFOOdynamicStyleBAR" >
Notice that the space in between the two EL expressions is lost.
I think that is probably a bug.
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
