aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llxml/llxmlnode.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/llxml/llxmlnode.cpp')
-rw-r--r--linden/indra/llxml/llxmlnode.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/linden/indra/llxml/llxmlnode.cpp b/linden/indra/llxml/llxmlnode.cpp
index 26906a4..bdbb606 100644
--- a/linden/indra/llxml/llxmlnode.cpp
+++ b/linden/indra/llxml/llxmlnode.cpp
@@ -41,6 +41,7 @@
41#include "v3dmath.h" 41#include "v3dmath.h"
42#include "v4math.h" 42#include "v4math.h"
43#include "llquaternion.h" 43#include "llquaternion.h"
44#include "llstring.h"
44#include "lluuid.h" 45#include "lluuid.h"
45 46
46const S32 MAX_COLUMN_WIDTH = 80; 47const S32 MAX_COLUMN_WIDTH = 80;
@@ -3088,6 +3089,8 @@ LLString LLXMLNode::getTextContents() const
3088 msg = mValue.substr(start); 3089 msg = mValue.substr(start);
3089 } 3090 }
3090 } 3091 }
3092 // Convert any internal CR to LF
3093 msg = utf8str_removeCRLF(msg);
3091 } 3094 }
3092 } 3095 }
3093 return msg; 3096 return msg;