[ https://issues.apache.org/jira/browse/WW-5086?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17178814#comment-17178814
]
ASF subversion and git services commented on WW-5086:
-----------------------------------------------------
Commit 22c88faf388e9d9bfa25672136081d27a7a04117 in struts's branch refs/heads/struts-2-5-x
from Lukasz Lenart
[ https://gitbox.apache.org/repos/asf?p=struts.git;h=22c88fa ]
WW-5086 Fixes s:set tag to persists empty body
> s:set with empty body
> ---------------------
>
> Key: WW-5086
> URL: https://issues.apache.org/jira/browse/WW-5086
> Project: Struts 2
> Issue Type: Bug
> Components: Core Tags
> Affects Versions: 2.5.22
> Reporter: Pierre-Yves Soblet
> Assignee: Lukasz Lenart
> Priority: Major
> Fix For: 2.5.24, 2.6
>
> Attachments: 20200814_WW-5086.patch
>
>
> In Struts 2.5.22, the following JSP fragment:
> {code:java}
> <s:set var="myVariable"> </s:set>
> <s:property value="#myVariable"/>
> {code}
> generates the following HTML fragment:
> {code:java}
> com.sample.MyAction@c1a47f6c
> {code}
> I would expect an empty output (as {{trimBody}} is set to "true" by default).
>
> Moreover, when the {{set}} tag body is empty:
> {code:java}
> <s:set var="myVariable" trimBody="false"/>
> <s:property value="#myVariable"/>
> {code}
> disregarding the value of the {{trimBody}} attribute, the output is the same:
> {code:java}
> com.sample.MyAction@c1a47f6c
> {code}
>
--
This message was sent by Atlassian Jira
(v8.3.4#803005)
|