correct config xml to upper case C

RevisionConfig property on Revision and RevisionInfo classes
This commit is contained in:
Rich
2012-02-15 20:41:34 +00:00
parent 1c2c28c625
commit a57172f22f
7 changed files with 61 additions and 45 deletions

View File

@@ -16,7 +16,7 @@ namespace VEPROMS.CSLA.Library
}
public UserConfig(string xml)
{
if (xml == string.Empty) xml = "<config/>";
if (xml == string.Empty) xml = "<Config/>";
_Xp = new XMLProperties(xml);
}
public UserConfig()
@@ -26,7 +26,7 @@ namespace VEPROMS.CSLA.Library
public override string ToString()
{
string s = _Xp.ToString();
if (s == "<config/>" || s == "<config></config>") return string.Empty;
if (s == "<Config/>" || s == "<Config></Config>") return string.Empty;
return s;
}
#region UserCategory // from user.cfg