diff options
author | Rob Snelders <programming@ertai.nl> | 2012-12-18 22:36:14 +0100 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2012-12-18 17:04:23 -0500 |
commit | 91a9b1f163fb698a0fae657b7cc6f60a617c5760 (patch) | |
tree | cc6d1bc86d66c9ff30c6078eab22f0b95e39ae9b | |
parent | d83499a864fd39b1e05706298b95594caae33e0c (diff) |
fdo#58370 - 'Send Feedback...' URL invalid in other languages then English
Change-Id: Idfd689c86700fe3b6ec2af477973a2cb484fc29d
Reviewed-on: https://gerrit.libreoffice.org/1408
Reviewed-by: Kohei Yoshida <kohei.yoshida@gmail.com>
Tested-by: Kohei Yoshida <kohei.yoshida@gmail.com>
-rw-r--r-- | sfx2/source/appl/appserv.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sfx2/source/appl/appserv.cxx b/sfx2/source/appl/appserv.cxx index cbb62496d875..38346f720e67 100644 --- a/sfx2/source/appl/appserv.cxx +++ b/sfx2/source/appl/appserv.cxx @@ -476,8 +476,8 @@ void SfxApplication::MiscExec_Impl( SfxRequest& rReq ) case SID_SEND_FEEDBACK: { ::rtl::OUString module = SfxHelp::GetCurrentModuleIdentifier(); - ::rtl::OUString sURL("http://hub.libreoffice.org/send-feedback/?version=" + utl::ConfigManager::getAboutBoxProductVersion() + - "&locale=" + utl::ConfigManager::getLocale() + "&module=" + module.copy(module.lastIndexOf(".") + 1 ) ); + ::rtl::OUString sURL("http://hub.libreoffice.org/send-feedback/?LOversion=" + utl::ConfigManager::getAboutBoxProductVersion() + + "&LOlocale=" + utl::ConfigManager::getLocale() + "&LOmodule=" + module.copy(module.lastIndexOf(".") + 1 ) ); try { uno::Reference< com::sun::star::system::XSystemShellExecute > xSystemShellExecute( |