fixed the names for some of the PROC.INI values (ex: ID,UnitNumber, etc)
This commit is contained in:
parent
d24109fe19
commit
f06e9199e1
@ -136,6 +136,7 @@ namespace Config
|
||||
if (!attr.Contains(attrname.ToLower())) attrname = 'z' + attrname;
|
||||
string sValue=sParam.Substring(i+1);
|
||||
string sName = attrname.Trim(' ');
|
||||
sName = sName.Replace("id", "ID").Replace("name", "Name").Replace("number", "Number").Replace("text", "Text").Replace("other", "Other");
|
||||
AddAttribute(xParent, sName, sValue);
|
||||
}
|
||||
private void AddParam_UC(XmlNode xParent, string sParam)
|
||||
|
Loading…
x
Reference in New Issue
Block a user