summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFranklin Weng <franklin@goodhorse.idv.tw>2018-02-28 18:12:07 +0800
committerSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>2018-03-01 08:32:25 +0100
commitc008e38e1069f33a20af63eedc4bc7e6ebf5278d (patch)
tree535efe1be12601adc76ca768847e93837c8b75ea
parent30574b2812932b634e171d66463454629bfa8046 (diff)
tdf#115795 Solve wrong redirect behavior of "Get Online Help"
When under locale zh-TW, Help > Get Online Help would use only "zh" as the parameter of LOLang and sent it to hub.libreoffice.org, which would redirect to Simplified Chinese forum instead of zh_TW ask.libreoffice.org forum. After discussing with Guilhem he refactored the behavior of the Hub, use LOlocale instead of LOLang, and keep LOLang for backward compatibility. The LibreOffice sent LOlocale instead to avoid this problem happening again. Change-Id: Ia9348cff88723210f693e65260bb987826a3f3ea Reviewed-on: https://gerrit.libreoffice.org/50503 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> Reviewed-on: https://gerrit.libreoffice.org/50519 Tested-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
-rw-r--r--sfx2/source/appl/appserv.cxx8
1 files changed, 1 insertions, 7 deletions
diff --git a/sfx2/source/appl/appserv.cxx b/sfx2/source/appl/appserv.cxx
index d6424c2d06ef..e5f91e7983e6 100644
--- a/sfx2/source/appl/appserv.cxx
+++ b/sfx2/source/appl/appserv.cxx
@@ -508,14 +508,8 @@ void SfxApplication::MiscExec_Impl( SfxRequest& rReq )
{
// Askbot has URL's normalized to languages, not locales
// Get language from locale: ll or lll or ll-CC or lll-CC
- sal_Int32 ix = utl::ConfigManager::getLocale().indexOf("-",0);
- OUString aLang;
- if (ix == -1)
- aLang = utl::ConfigManager::getLocale();
- else
- aLang = utl::ConfigManager::getLocale().copy(0,ix);
- OUString sURL("http://hub.libreoffice.org/forum/?LOlang=" + aLang);
+ OUString sURL("https://hub.libreoffice.org/forum/?LOlocale=" + utl::ConfigManager::getLocale());
sfx2::openUriExternally(sURL, false);
break;
}