fixed the names for some of the PROC.INI values (ex: ID,UnitNumber, etc)

This commit is contained in:
John Jenko 2011-09-22 19:49:28 +00:00
parent d24109fe19
commit f06e9199e1

View File

@ -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)