You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by ja...@apache.org on 2006/11/08 11:57:10 UTC

svn commit: r472449 - /incubator/wicket/trunk/wicket/src/main/java/wicket/markup/html/form/SubmitLink.java

Author: janne
Date: Wed Nov  8 02:57:09 2006
New Revision: 472449

URL: http://svn.apache.org/viewvc?view=rev&rev=472449
Log:
run super.onComponentTag(tag) on onComponentTag

Modified:
    incubator/wicket/trunk/wicket/src/main/java/wicket/markup/html/form/SubmitLink.java

Modified: incubator/wicket/trunk/wicket/src/main/java/wicket/markup/html/form/SubmitLink.java
URL: http://svn.apache.org/viewvc/incubator/wicket/trunk/wicket/src/main/java/wicket/markup/html/form/SubmitLink.java?view=diff&rev=472449&r1=472448&r2=472449
==============================================================================
--- incubator/wicket/trunk/wicket/src/main/java/wicket/markup/html/form/SubmitLink.java (original)
+++ incubator/wicket/trunk/wicket/src/main/java/wicket/markup/html/form/SubmitLink.java Wed Nov  8 02:57:09 2006
@@ -177,6 +177,8 @@
 	@Override
 	protected void onComponentTag(ComponentTag tag)
 	{
+		super.onComponentTag(tag);
+
 		if (isLinkEnabled())
 		{
 			if (tag.getName().equalsIgnoreCase("a"))