Update of /var/cvs/applications/taglib/src/org/mmbase/bridge/jsp/taglib
In directory james.mmbase.org:/tmp/cvs-serv3892

Modified Files:
        ContextReferrerTag.java 
Log Message:
made id='' mean same as no id attr at all


See also: 
http://cvs.mmbase.org/viewcvs/applications/taglib/src/org/mmbase/bridge/jsp/taglib


Index: ContextReferrerTag.java
===================================================================
RCS file: 
/var/cvs/applications/taglib/src/org/mmbase/bridge/jsp/taglib/ContextReferrerTag.java,v
retrieving revision 1.109
retrieving revision 1.110
diff -u -b -r1.109 -r1.110
--- ContextReferrerTag.java     6 Aug 2008 12:18:54 -0000       1.109
+++ ContextReferrerTag.java     14 Aug 2008 11:29:10 -0000      1.110
@@ -36,7 +36,7 @@
  *
  *
  * @author Michiel Meeuwissen
- * @version $Id: ContextReferrerTag.java,v 1.109 2008/08/06 12:18:54 michiel 
Exp $
+ * @version $Id: ContextReferrerTag.java,v 1.110 2008/08/14 11:29:10 michiel 
Exp $
  * @see ContextTag
  */
 
@@ -209,7 +209,7 @@
             if ("_".equals(i)) {
                 throw new RuntimeException("'_' is not a valid id (it is 
reserved for the 'current writer')");
             }
-            id = getAttribute(i);
+            id = getAttribute(i, true);
         } catch (JspTagException j) {
             throw new RuntimeException(j);
         }
_______________________________________________
Cvs mailing list
[email protected]
http://lists.mmbase.org/mailman/listinfo/cvs

Reply via email to