HasAttribute() is case sensitive
Brought to you by:
mellobot
Originally created by: jac....@gmail.com
If I check existing "ABC" attribute by "abc" string then method HasAttribute() return False.
But method GetAttributeByName() return proper value.
Problem is with compare way, in HasAttribute is:
if AttributeName[i] = AName then
but in GetAttributeByName() is:
if Utf8CompareText(A.Name, AName) = 0 then
Please update HasAttribute to use Utf8CompareText function()