[EMAIL PROTECTED] wrote:
Author: markt
Date: Tue Apr 17 17:32:36 2007
New Revision: 529818

URL: http://svn.apache.org/viewvc?view=rev&rev=529818
Log:
Fix bug 41869. TagData.getAttribute() should return TagData.REQUEST_TIME_VALUE 
when the attribute value is an EL expression.

-1. This flag is meant to represent if this is a the <% scriplet thingie, not EL.

If REQUEST_TIME_VALUE should be set for EL too (which I am not convinced, but I don't know the spec very well overall), then it can be done at the end of the method:
                        if (jspAttrs[i].isExpression()) {
                            tagDataAttrs.put(attrs.getQName(i),
                                    TagData.REQUEST_TIME_VALUE);
                        } else {
                            tagDataAttrs.put(attrs.getQName(i), attrs
                                    .getValue(i));
                        }

Rémy

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to