From 22e989d6335f718ac083f2fe528d93773cad27d9 Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Wed, 11 Apr 2007 02:44:56 +0000 Subject: [PATCH] Fix error introduced with revision 2039 --- dbPort/src/org/compiere/model/PO.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dbPort/src/org/compiere/model/PO.java b/dbPort/src/org/compiere/model/PO.java index b6670b3e13..22fd6d1418 100644 --- a/dbPort/src/org/compiere/model/PO.java +++ b/dbPort/src/org/compiere/model/PO.java @@ -1904,7 +1904,7 @@ public abstract class PO if (m_newValues[i] != null) return true; // something changed } - if (m_custom.size() > 0) + if (m_custom != null && m_custom.size() > 0) return true; // there are custom columns modified return false; } // is_Change