From: markt Date: Wed, 18 Apr 2007 01:30:25 +0000 (+0000) Subject: Revert previous fix for 41869 and apply Remy's suggested fix. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=e375de489b28be7d7ef5c578409fded1980467e6;p=tomcat7.0 Revert previous fix for 41869 and apply Remy's suggested fix. git-svn-id: https://svn.apache.org/repos/asf/tomcat/tc6.0.x/trunk@529822 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/java/org/apache/jasper/compiler/Validator.java b/java/org/apache/jasper/compiler/Validator.java index 826895245..da81d473c 100644 --- a/java/org/apache/jasper/compiler/Validator.java +++ b/java/org/apache/jasper/compiler/Validator.java @@ -1177,7 +1177,7 @@ class Validator { .getLocalName(i), attrs.getValue(i), false, null, false); } - if (jspAttrs[i].isExpression()) { + if (expression) { tagDataAttrs.put(attrs.getQName(i), TagData.REQUEST_TIME_VALUE); } else { @@ -1320,7 +1320,7 @@ class Validator { validateFunctions(el, n); result = new Node.JspAttribute(tai, qName, uri, - localName, value, true, el, dynamic); + localName, value, false, el, dynamic); ELContextImpl ctx = new ELContextImpl(); ctx.setFunctionMapper(getFunctionMapper(el));