diff options
author | Mnikolenko Productengine <mnikolenko@productengine.com> | 2017-08-10 17:52:29 +0300 |
---|---|---|
committer | Mnikolenko Productengine <mnikolenko@productengine.com> | 2017-08-10 17:52:29 +0300 |
commit | 4cd7e3e2f1c5cb278c6c4dfa22ed3f00c5cdcbc8 (patch) | |
tree | 3f02e129aaa084171fad49fdca4e4b870f17730f /indra/newview/llviewermenu.cpp | |
parent | 654aead8a1014d095331986a32690920b6d8464a (diff) |
MAINT-7596 FIXED System information is truncated in JIRA issues filed through "Report bug" viewer option
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 0ad3ef2f71..912b0e0b04 100644 --- a/indra/newview/llviewermenu.cpp +++ b/indra/newview/llviewermenu.cpp @@ -8017,7 +8017,7 @@ void handle_report_bug(const LLSD& param) LLUIString url(param.asString()); LLStringUtil::format_map_t replace; - replace["[ENVIRONMENT]"] = LLURI::escape(LLAppViewer::instance()->getViewerInfoString()); + replace["[ENVIRONMENT]"] = LLURI::escape(LLAppViewer::instance()->getShortViewerInfoString()); LLSLURL location_url; LLAgentUI::buildSLURL(location_url); replace["[LOCATION]"] = LLURI::escape(location_url.getSLURLString()); |