v1.2.3-patch2

This commit is contained in:
csh 2023-03-14 17:07:26 +08:00
parent 6dda8f85bc
commit 387c2fbccc
1 changed files with 4 additions and 1 deletions

View File

@ -165,7 +165,10 @@ public
lName := lowerCase(name);
r := sselect * from attrs where lName = lowerCase([0]) end;
if istable(r) then
return node.GetAttribute(r[1]);
begin
value := node.GetAttribute(r[1]);
return trystrtofloat(value, r) ? r : value;
end
children := GetChildren();
r := select * from children where lName = lowerCase(['field']) end;