You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by hl...@apache.org on 2010/07/14 00:14:04 UTC

svn commit: r963880 - /tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/services/TapestryModule.java

Author: hlship
Date: Tue Jul 13 22:14:04 2010
New Revision: 963880

URL: http://svn.apache.org/viewvc?rev=963880&view=rev
Log:
TAP5-1207: A form control component (such as TextField) whose id is "id" can confuse client-side logic for the Form DOM object

Modified:
    tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/services/TapestryModule.java

Modified: tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/services/TapestryModule.java
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/services/TapestryModule.java?rev=963880&r1=963879&r2=963880&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/services/TapestryModule.java (original)
+++ tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/services/TapestryModule.java Tue Jul 13 22:14:04 2010
@@ -2457,7 +2457,7 @@ public final class TapestryModule
 
         configuration.add(SymbolConstants.BLACKBIRD_ENABLED, "false");
 
-        configuration.add(InternalSymbols.PRE_SELECTED_FORM_NAMES, "reset,submit,select");
+        configuration.add(InternalSymbols.PRE_SELECTED_FORM_NAMES, "reset,submit,select,id,method,action,onsubmit");
     }
 
     /**