From 200073c97a34a90718c3362efaed98c52fa12a17 Mon Sep 17 00:00:00 2001
From: Richard Linden <none@none>
Date: Mon, 27 Jun 2011 19:13:42 -0700
Subject: [PATCH] fixed basic root folder entry to match 8 character limit

---
 indra/llcommon/llfoldertype.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/indra/llcommon/llfoldertype.cpp b/indra/llcommon/llfoldertype.cpp
index 39afdac056d..f6d0f5bce89 100644
--- a/indra/llcommon/llfoldertype.cpp
+++ b/indra/llcommon/llfoldertype.cpp
@@ -94,7 +94,7 @@ LLFolderDictionary::LLFolderDictionary()
 
 	addEntry(LLFolderType::FT_INBOX, 				new FolderEntry("inbox",	TRUE));
 	addEntry(LLFolderType::FT_OUTBOX, 				new FolderEntry("outbox",	TRUE));
-	addEntry(LLFolderType::FT_BASIC_ROOT,			new FolderEntry("basic_root", TRUE));
+	addEntry(LLFolderType::FT_BASIC_ROOT,			new FolderEntry("basic_rt", TRUE));
 		 
 	addEntry(LLFolderType::FT_NONE, 				new FolderEntry("-1",		FALSE));
 };
-- 
GitLab