diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/db.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -615,7 +615,8 @@ class cDbRow : public cDbService int count = 0; for (int f = 0; f < tableDef->fieldCount(); f++) - count += dbValues[f].getChanges(); + if (dbValues[f].getChanges()) + count++; return count; } |