diff options
author | MW | 2007-10-08 09:16:03 +0000 |
---|---|---|
committer | MW | 2007-10-08 09:16:03 +0000 |
commit | f2f173a00e93f910f36fc43609bca27860698457 (patch) | |
tree | 9c3f9eeddf35d4f7a4f7be7827fa793b9748f05e /OpenSim/Region | |
parent | applied Darok"s BulletXPlugin changes 003.patch (diff) | |
download | opensim-SC_OLD-f2f173a00e93f910f36fc43609bca27860698457.zip opensim-SC_OLD-f2f173a00e93f910f36fc43609bca27860698457.tar.gz opensim-SC_OLD-f2f173a00e93f910f36fc43609bca27860698457.tar.bz2 opensim-SC_OLD-f2f173a00e93f910f36fc43609bca27860698457.tar.xz |
small bug fix
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/Scene.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs index 9e19a26..befda0e 100644 --- a/OpenSim/Region/Environment/Scenes/Scene.cs +++ b/OpenSim/Region/Environment/Scenes/Scene.cs | |||
@@ -654,7 +654,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
654 | XmlDocument doc = new XmlDocument(); | 654 | XmlDocument doc = new XmlDocument(); |
655 | XmlNode rootNode; | 655 | XmlNode rootNode; |
656 | int primCount = 0; | 656 | int primCount = 0; |
657 | if (File.Exists(fileName)) | 657 | if ((fileName.StartsWith("http:")) | (File.Exists(fileName))) |
658 | { | 658 | { |
659 | XmlTextReader reader = new XmlTextReader(fileName); | 659 | XmlTextReader reader = new XmlTextReader(fileName); |
660 | reader.WhitespaceHandling = WhitespaceHandling.None; | 660 | reader.WhitespaceHandling = WhitespaceHandling.None; |