Actions
Task #2285
closedVisitors from Help - Send Feedback should be directed to localised page
Status:
Closed
Priority:
High
Assignee:
-
Category:
Website
Target version:
-
Start date:
Due date:
% Done:
0%
Tags:
URL:
Description
Moved from https://bugs.documentfoundation.org/show_bug.cgi?id=85948
https://cgit.freedesktop.org/libreoffice/core/tree/sfx2/source/appl/appserv.cxx#n493
case SID_SEND_FEEDBACK:
{
OUString module = SfxHelp::GetCurrentModuleIdentifier();
OUString sURL("http://hub.libreoffice.org/send-feedback/?LOversion=" + utl::ConfigManager::getAboutBoxProductVersion() +
"&LOlocale=" + utl::ConfigManager::getLocale() + "&LOmodule=" + module.copy(module.lastIndexOf('.') + 1 ) );
sfx2::openUriExternally(sURL, false);
break;
}
The locale is sent with the url visit so should be dealt with.
Actions