summaryrefslogtreecommitdiff
path: root/indra/llui/llurlentry.cpp
diff options
context:
space:
mode:
authorDenis Serdjuk <dserduk@productengine.com>2009-12-07 19:42:11 +0200
committerDenis Serdjuk <dserduk@productengine.com>2009-12-07 19:42:11 +0200
commitda8de2b6742cad3fadad84c9f0640b69a9690f66 (patch)
tree3182000cd24ad0d5bb84cff84c8985e93074f9b3 /indra/llui/llurlentry.cpp
parent0a88e412cc5b6b27bddc90b905214dceca65e5e1 (diff)
implemented Task EXT-2304 Offer Notifications should include a link that highlights the landmark or item in the appropriate side panel
Changes: 1.highlighting of landmarks was broken by LLInventoryPanel::getActiveInventoryPanel(). 2. escaping of urls --HG-- branch : product-engine
Diffstat (limited to 'indra/llui/llurlentry.cpp')
-rw-r--r--indra/llui/llurlentry.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/llurlentry.cpp b/indra/llui/llurlentry.cpp
index 9ad86a29f6..7694d02837 100644
--- a/indra/llui/llurlentry.cpp
+++ b/indra/llui/llurlentry.cpp
@@ -401,7 +401,7 @@ LLUrlEntryInventory::LLUrlEntryInventory()
std::string LLUrlEntryInventory::getLabel(const std::string &url, const LLUrlLabelCallback &cb)
{
std::string label = getStringAfterToken(url, "name=");
- return label.empty() ? url : label;
+ return LLURI::unescape(label.empty() ? url : label);
}
///