Browse Source

+ Fix from Alexandrov Alexandru for CheckFieldNames

git-svn-id: trunk@1116 -
michael 20 years ago
parent
commit
7d24ef2ff3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      fcl/db/fields.inc

+ 1 - 1
fcl/db/fields.inc

@@ -2447,7 +2447,7 @@ Var I : longint;
 begin
 begin
   T:=Value;
   T:=Value;
   Repeat
   Repeat
-    I:=Pos(T,';');
+    I:=Pos(';',T);
     If I=0 Then I:=Length(T)+1;
     If I=0 Then I:=Length(T)+1;
     S:=Copy(T,1,I-1);
     S:=Copy(T,1,I-1);
     Delete(T,1,I);
     Delete(T,1,I);