Browse Source

* patch for mantis #22371 TTimeField.SetAsString stores data as NativeFormat corrupting time fields

git-svn-id: trunk@22471 -
marco 13 years ago
parent
commit
aa7a980a6f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/fcl-db/src/base/fields.inc

+ 1 - 1
packages/fcl-db/src/base/fields.inc

@@ -2179,7 +2179,7 @@ begin
   else
   else
     begin
     begin
     R:=StrToTime(AVAlue);
     R:=StrToTime(AVAlue);
-    SetData(@R);
+    SetData(@R,False);
     end;
     end;
 end;
 end;