correct config xml to upper case C
RevisionConfig property on Revision and RevisionInfo classes
This commit is contained in:
@@ -25,14 +25,14 @@ namespace VEPROMS.CSLA.Library
|
||||
{
|
||||
_Document = document;
|
||||
string xml = _Document.Config;
|
||||
if (xml == string.Empty) xml = "<config/>";
|
||||
if (xml == string.Empty) xml = "<Config/>";
|
||||
_Xp = new XMLProperties(xml);
|
||||
}
|
||||
public DocumentConfig(DocumentInfo documentInfo)
|
||||
{
|
||||
_DocumentInfo = documentInfo;
|
||||
string xml = _DocumentInfo.Config;
|
||||
if (xml == string.Empty) xml = "<config/>";
|
||||
if (xml == string.Empty) xml = "<Config/>";
|
||||
_Xp = new XMLProperties(xml);
|
||||
}
|
||||
internal string GetValue(string group, string item)
|
||||
|
Reference in New Issue
Block a user