summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
Diffstat (limited to 'indra')
-rwxr-xr-xindra/newview/llfloaterreporter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llfloaterreporter.cpp b/indra/newview/llfloaterreporter.cpp
index 27e26d4fda..6b4b584fa9 100755
--- a/indra/newview/llfloaterreporter.cpp
+++ b/indra/newview/llfloaterreporter.cpp
@@ -240,7 +240,7 @@ void LLFloaterReporter::getExperienceInfo(const LLUUID& experience_id)
if(experience.isDefined())
{
setFromAvatarID(experience[LLExperienceCache::AGENT_ID]);
- desc << "\nExperience id: " << mExperienceID;
+ desc << "Experience id: " << mExperienceID;
}
else
{
@@ -248,7 +248,7 @@ void LLFloaterReporter::getExperienceInfo(const LLUUID& experience_id)
}
LLUICtrl* details = getChild<LLUICtrl>("details_edit");
- details->setValue(details->getValue().asString()+desc.str());
+ details->setValue(desc.str());
}
}