From 49cadf47f3eeaee9da3fca55a321211456f86019 Mon Sep 17 00:00:00 2001
From: "Brad Payne (Vir Linden)" <vir@lindenlab.com>
Date: Mon, 9 May 2011 17:30:40 -0400
Subject: [PATCH] SH-1491 WIP - whole model upload for fee request

---
 indra/newview/llmeshrepository.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/indra/newview/llmeshrepository.cpp b/indra/newview/llmeshrepository.cpp
index 9c725508478..c2c373d07f0 100755
--- a/indra/newview/llmeshrepository.cpp
+++ b/indra/newview/llmeshrepository.cpp
@@ -1365,7 +1365,7 @@ void LLMeshUploadThread::run()
 void dumpLLSDToFile(LLSD& content, std::string& filename)
 {
 	std::ofstream of(filename);
-	LLSDSerialize::toXML(content,of);
+	LLSDSerialize::toPrettyXML(content,of);
 }
 
 LLSD LLMeshUploadThread::wholeModelToLLSD(bool include_textures)
@@ -1431,7 +1431,7 @@ LLSD LLMeshUploadThread::wholeModelToLLSD(bool include_textures)
 		mesh_entry["coords"]["rot_x"] = 1.0;
 		mesh_entry["coords"]["rot_y"] = 1.0;
 		mesh_entry["coords"]["rot_z"] = 1.0;
-		mesh_entry["mesh_data"] = ostr.str();
+		mesh_entry["mesh_data"] = "RESTORE_ME"; //ostr.str();
 
 		res["mesh_list"][mesh_num] = mesh_entry;
 		
-- 
GitLab