Author: ehillenius
Date: Fri Oct 19 23:38:46 2007
New Revision: 586673
URL: http://svn.apache.org/viewvc?rev=586673&view=rev
Log:
WICKET-1090
I've looked hard to see whether this fix had any negative impact, but couldn't
find any. I think this is a pretty obvious bug, but didn't bite too many people
because workarounds are available (e.g. directly setting the new password on
the component if you look at the case described with WICKET-1090).
Modified:
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/form/FormComponent.java
Modified:
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/form/FormComponent.java
URL:
http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/form/FormComponent.java?rev=586673&r1=586672&r2=586673&view=diff
==============================================================================
---
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/form/FormComponent.java
(original)
+++
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/form/FormComponent.java
Fri Oct 19 23:38:46 2007
@@ -1287,6 +1287,15 @@
}
/**
+ * @see org.apache.wicket.Component#onAfterRender()
+ */
+ protected void onAfterRender()
+ {
+ super.onAfterRender();
+ rawInput = NO_RAW_INPUT;
+ }
+
+ /**
* Processes the component tag.
*
* @param tag