diff options
author | andreykproductengine <andreykproductengine@lindenlab.com> | 2018-12-06 19:50:33 +0200 |
---|---|---|
committer | andreykproductengine <andreykproductengine@lindenlab.com> | 2018-12-06 19:50:33 +0200 |
commit | a48ff6c2fadb5697ab204a34ac696f1ce920e02d (patch) | |
tree | c141a194e79d8e81bc02b14113b177931031538e | |
parent | b39cfe229ba127b9ac3e47edd1255b95fe32c5ea (diff) |
SL-10172 Add a KB link to the TLS failure dialog
-rw-r--r-- | indra/newview/llxmlrpctransaction.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/indra/newview/llxmlrpctransaction.cpp b/indra/newview/llxmlrpctransaction.cpp index 143c97fca4..f5c169996f 100644 --- a/indra/newview/llxmlrpctransaction.cpp +++ b/indra/newview/llxmlrpctransaction.cpp @@ -507,6 +507,8 @@ void LLXMLRPCTransaction::Impl::setHttpStatus(const LLCore::HttpStatus &status) case CURLE_SSL_CACERT: case CURLE_SSL_CONNECT_ERROR: + { + std::string uri_base = "https://community.secondlife.com/knowledgebase/english/error-messages-r520/#Section__3"; message = "Often this means that your computer\'s clock is set incorrectly.\n" "Please go to Control Panels and make sure the time and date\n" @@ -514,8 +516,9 @@ void LLXMLRPCTransaction::Impl::setHttpStatus(const LLCore::HttpStatus &status) "Also check that your network and firewall are set up correctly.\n" "If you continue to receive this error, please go\n" "to the Support section of the SecondLife.com web site\n" - "and report the problem."; + "and report the problem.\n\n[" + uri_base + " Knowledge Base]"; break; + } default: break; |