aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJustin Clarke Casey2009-06-12 20:00:26 +0000
committerJustin Clarke Casey2009-06-12 20:00:26 +0000
commit9f2ddfd167e8e6d2c24755d644b49804f2b3a727 (patch)
tree98781e0feb676e2809bad4bad057567413977e9d
parent* minor: removing some logging stuff accidentally left in on the last commit (diff)
downloadopensim-SC_OLD-9f2ddfd167e8e6d2c24755d644b49804f2b3a727.zip
opensim-SC_OLD-9f2ddfd167e8e6d2c24755d644b49804f2b3a727.tar.gz
opensim-SC_OLD-9f2ddfd167e8e6d2c24755d644b49804f2b3a727.tar.bz2
opensim-SC_OLD-9f2ddfd167e8e6d2c24755d644b49804f2b3a727.tar.xz
* Temporarily resolve another problem in http://opensimulator.org/mantis/view.php?id=3741 by disabling the loading of OAR creation information
-rw-r--r--OpenSim/Region/CoreModules/World/Archiver/ArchiveReadRequest.cs6
1 files changed, 4 insertions, 2 deletions
diff --git a/OpenSim/Region/CoreModules/World/Archiver/ArchiveReadRequest.cs b/OpenSim/Region/CoreModules/World/Archiver/ArchiveReadRequest.cs
index 0b3f921..5c596a1 100644
--- a/OpenSim/Region/CoreModules/World/Archiver/ArchiveReadRequest.cs
+++ b/OpenSim/Region/CoreModules/World/Archiver/ArchiveReadRequest.cs
@@ -514,11 +514,13 @@ namespace OpenSim.Region.CoreModules.World.Archiver
514 { 514 {
515 if (xtr.Name.ToString() == "date") 515 if (xtr.Name.ToString() == "date")
516 { 516 {
517 currentRegionSettings.LoadedCreationDate = xtr.ReadElementContentAsString(); 517 // Disable date & time for now until load problem in
518 // http://opensimulator.org/mantis/view.php?id=3741 (note 0012120 by WWWench) is resolved
519 //currentRegionSettings.LoadedCreationDate = xtr.ReadElementContentAsString();
518 } 520 }
519 else if (xtr.Name.ToString() == "time") 521 else if (xtr.Name.ToString() == "time")
520 { 522 {
521 currentRegionSettings.LoadedCreationTime = xtr.ReadElementContentAsString(); 523 //currentRegionSettings.LoadedCreationTime = xtr.ReadElementContentAsString();
522 } 524 }
523 else if (xtr.Name.ToString() == "id") 525 else if (xtr.Name.ToString() == "id")
524 { 526 {