Skip to content
This repository has been archived by the owner on May 9, 2020. It is now read-only.

Commit

Permalink
"Applied fix from trunk for revision: 1226065"
Browse files Browse the repository at this point in the history
------------------------------------------------------------------------
r1226065 | jleroux | 2011-12-31 12:37:23 +0100 (sam., 31 déc. 2011) | 3 lines

This completes "Null values are not synchronized in http mode" https://issues.apache.org/jira/browse/OFBIZ-4602

And I better understand Patrick's answer to the issue now...
------------------------------------------------------------------------
�

git-svn-id: https://svn.apache.org/repos/asf/ofbiz/branches/release4.0@1226070 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
JacquesLeRoux committed Dec 31, 2011
1 parent 5f030bf commit 0a7b510
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion framework/entity/src/org/ofbiz/entity/GenericEntity.java
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ public void setString(String name, String value) {
}

boolean isNullString = false;
if ("null".equals(value)) {
if ("null".equals(value) || "[null-field]".equals(value)) {
// count this as a null too, but only for numbers and stuff, not for Strings
isNullString = true;
}
Expand Down

0 comments on commit 0a7b510

Please sign in to comment.