diff options
author | maxim_productengine <mnikolenko@productengine.com> | 2018-01-30 17:45:04 +0200 |
---|---|---|
committer | maxim_productengine <mnikolenko@productengine.com> | 2018-01-30 17:45:04 +0200 |
commit | 22050467f5ec42b30e98d7bd59dd0ca617b259e4 (patch) | |
tree | b2a0ed35a9a4358f52b9663a73d9e687bc9ee586 /indra/newview/llviewermenu.cpp | |
parent | 6e445e82e2a1c1559be5193cd2c131c5f1207f55 (diff) |
MAINT-8180 Add the way to get default string despite of current localiztion
Diffstat (limited to 'indra/newview/llviewermenu.cpp')
-rw-r--r-- | indra/newview/llviewermenu.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llviewermenu.cpp b/indra/newview/llviewermenu.cpp index 5bbf5650ad..e973363e0f 100644 --- a/indra/newview/llviewermenu.cpp +++ b/indra/newview/llviewermenu.cpp @@ -8001,7 +8001,7 @@ void handle_report_bug(const LLSD& param) LLUIString url(param.asString()); LLStringUtil::format_map_t replace; - replace["[ENVIRONMENT]"] = LLURI::escape(LLAppViewer::instance()->getShortViewerInfoString()); + replace["[ENVIRONMENT]"] = LLURI::escape(LLAppViewer::instance()->getViewerInfoString(true)); LLSLURL location_url; LLAgentUI::buildSLURL(location_url); replace["[LOCATION]"] = LLURI::escape(location_url.getSLURLString()); |