diff options
author | dartraiden <wowemuh@gmail.com> | 2022-12-17 15:36:37 +0300 |
---|---|---|
committer | dartraiden <wowemuh@gmail.com> | 2022-12-17 15:36:37 +0300 |
commit | f4b92c5c224f8aeffc8ffb9b372fc9b25bac2559 (patch) | |
tree | 4109227a0856760660019466a1a001380b0638b6 /plugins/Msg_Export/src/options.cpp | |
parent | 881ee3db79192689d692e71aeafee11d1ceab28d (diff) |
Mediawiki considers URLs with and without a trailing slash as different pages, see https://phabricator.wikimedia.org/T14703
Diffstat (limited to 'plugins/Msg_Export/src/options.cpp')
-rw-r--r-- | plugins/Msg_Export/src/options.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Msg_Export/src/options.cpp b/plugins/Msg_Export/src/options.cpp index 4e9a815831..31f4e5a6fc 100644 --- a/plugins/Msg_Export/src/options.cpp +++ b/plugins/Msg_Export/src/options.cpp @@ -405,7 +405,7 @@ class CContactsOptDlg : public CDlgBase public:
CContactsOptDlg() :
CDlgBase(g_plugin, IDD_OPT_CONTACTS),
- urlHelp(this, IDC_OPEN_HELP, "https://miranda-ng.org/p/Msg_Export/"),
+ urlHelp(this, IDC_OPEN_HELP, "https://miranda-ng.org/p/Msg_Export"),
listUsers(this, IDC_MAP_USER_LIST)
{
listUsers.OnKeyDown = Callback(this, &CContactsOptDlg::list_KeyDown);
|