From fd80b451d97567d070182ce1c93821288288e282 Mon Sep 17 00:00:00 2001 From: hns Date: Sat, 20 Sep 2008 20:22:37 +0000 Subject: [PATCH] =?UTF-8?q?Patch=20from=20J=C3=BCrg=20Lehni=20to=20not=20t?= =?UTF-8?q?rack=20unset()=20on=20non-persitable=20properties.=20Fixes=20bu?= =?UTF-8?q?g=20633=20http://helma.org/bugs/show=5Fbug.cgi=3Fid=3D633?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/helma/objectmodel/db/Node.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helma/objectmodel/db/Node.java b/src/helma/objectmodel/db/Node.java index fb6d2077..b08f784c 100644 --- a/src/helma/objectmodel/db/Node.java +++ b/src/helma/objectmodel/db/Node.java @@ -2481,7 +2481,7 @@ public final class Node implements INode, Serializable { lastmodified = System.currentTimeMillis(); - if (state == CLEAN) { + if (state == CLEAN && isPersistableProperty(propname)) { markAs(MODIFIED); } } else if (dbmap != null) {