Thank you, Xugu Madison and ChrisDown, for a patch that
fixes linux filename extensions from .Xml back to .xml
This commit is contained in:
Melanie Thielker
2008-09-06 14:58:23 +00:00
parent f342bd1e96
commit 9e545c9984
28 changed files with 36 additions and 37 deletions

View File

@@ -47,7 +47,7 @@ namespace OpenSim.Framework.Configuration.HTTP
public HTTPConfiguration()
{
remoteConfigSettings = new RemoteConfigSettings("remoteconfig.Xml");
remoteConfigSettings = new RemoteConfigSettings("remoteconfig.xml");
xmlConfig = new XmlConfiguration();
}

View File

@@ -48,7 +48,7 @@ namespace OpenSim.Framework.Configuration.XML
{
rootNode = doc.SelectSingleNode("Root");
if (null == rootNode)
throw new Exception("Error: Invalid .Xml File. Missing <Root>");
throw new Exception("Error: Invalid .xml File. Missing <Root>");
configNode = rootNode.SelectSingleNode("Config");
if (null == configNode)