following Teo Sarca's advice to use 'false' instead of 'N'. Tested with JUnit, all values passed.

Thanks to Teo
Link to SF Tracker: http://sourceforge.net/support/tracker.php?aid=2214883
This commit is contained in:
Redhuan D. Oon 2010-03-17 13:28:24 +00:00
parent 478075d45d
commit 6de09769ff
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ public class MAttribute extends X_M_Attribute
if (onlyProductAttributes) if (onlyProductAttributes)
{ {
sql += " AND IsInstanceAttribute=?"; sql += " AND IsInstanceAttribute=?";
params.add("N"); params.add(false);
} }
if (onlyListAttributes) if (onlyListAttributes)
{ {