You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by pa...@apache.org on 2017/08/30 11:01:40 UTC

wicket git commit: WICKET-6457: clear updating boolean when attribute is bound

Repository: wicket
Updated Branches:
  refs/heads/wicket-7.x 163d5c14b -> f8ffe3e13


WICKET-6457: clear updating boolean when attribute is bound


Project: http://git-wip-us.apache.org/repos/asf/wicket/repo
Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/f8ffe3e1
Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/f8ffe3e1
Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/f8ffe3e1

Branch: refs/heads/wicket-7.x
Commit: f8ffe3e1308e2ac9b51bb6fd27380abf175ab9e7
Parents: 163d5c1
Author: Emond Papegaaij <em...@topicus.nl>
Authored: Tue Aug 29 16:25:43 2017 +0200
Committer: Emond Papegaaij <em...@topicus.nl>
Committed: Wed Aug 30 13:01:26 2017 +0200

----------------------------------------------------------------------
 .../src/main/java/org/apache/wicket/page/PageStoreManager.java      | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/f8ffe3e1/wicket-core/src/main/java/org/apache/wicket/page/PageStoreManager.java
----------------------------------------------------------------------
diff --git a/wicket-core/src/main/java/org/apache/wicket/page/PageStoreManager.java b/wicket-core/src/main/java/org/apache/wicket/page/PageStoreManager.java
index b3fef89..6934e0d 100644
--- a/wicket-core/src/main/java/org/apache/wicket/page/PageStoreManager.java
+++ b/wicket-core/src/main/java/org/apache/wicket/page/PageStoreManager.java
@@ -317,6 +317,7 @@ public class PageStoreManager extends AbstractPageManager
 		@Override
 		public void valueBound(HttpSessionBindingEvent event)
 		{
+			updating.set(false);
 		}
 
 		@Override