I came across the following markup in a JSP file in a legacy app I maintain:
<logic:equal name="welcome memberInfoView" property="hasFoo" value="false">
That name attribute looks very wrong to me. Based on what I've read in the Struts docs, that space isn't allowed.
Is this legal? If so, what would it be doing? If not, what might the intent have been?
EDIT: After some more searching, I found that "welcome memberInfoView" was indeed intentionally being used as an attribute name (with the space).