summaryrefslogtreecommitdiff
path: root/indra/llcommon/llfoldertype.cpp
diff options
context:
space:
mode:
authorRichard Linden <none@none>2011-06-27 19:13:42 -0700
committerRichard Linden <none@none>2011-06-27 19:13:42 -0700
commit200073c97a34a90718c3362efaed98c52fa12a17 (patch)
tree2f025e601f233217d2fd748537cdfe8b43652862 /indra/llcommon/llfoldertype.cpp
parent4bb8b25bbff5876cafde3a55a7f9a71ee257bee1 (diff)
fixed basic root folder entry to match 8 character limit
Diffstat (limited to 'indra/llcommon/llfoldertype.cpp')
-rw-r--r--indra/llcommon/llfoldertype.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llfoldertype.cpp b/indra/llcommon/llfoldertype.cpp
index 39afdac056..f6d0f5bce8 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));
};