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/HistoryPlusPlus | |
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/HistoryPlusPlus')
-rw-r--r-- | plugins/HistoryPlusPlus/hpp_global.pas | 2 | ||||
-rw-r--r-- | plugins/HistoryPlusPlus/hpp_opt_dialog.pas | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/HistoryPlusPlus/hpp_global.pas b/plugins/HistoryPlusPlus/hpp_global.pas index 6ee414e78f..fc115b0727 100644 --- a/plugins/HistoryPlusPlus/hpp_global.pas +++ b/plugins/HistoryPlusPlus/hpp_global.pas @@ -173,7 +173,7 @@ const hppAuthor = 'theMIROn, Art Fedorov';
hppCopyright = '© 2006-2009 theMIROn, 2003-2006 Art Fedorov. History+ parts © 2001 Christian Kastner';
- hppHomePageURL = 'https://miranda-ng.org/p/HistoryPP/';
+ hppHomePageURL = 'https://miranda-ng.org/p/HistoryPP';
hppIPName = 'historypp_icons.dll';
diff --git a/plugins/HistoryPlusPlus/hpp_opt_dialog.pas b/plugins/HistoryPlusPlus/hpp_opt_dialog.pas index 25281bed1f..f203f59a6a 100644 --- a/plugins/HistoryPlusPlus/hpp_opt_dialog.pas +++ b/plugins/HistoryPlusPlus/hpp_opt_dialog.pas @@ -71,7 +71,7 @@ const ID_NEED_RESTART = 999; // "Please restart Miranda IM..."
const
- URL_NEEDOPTIONS = 'https://miranda-ng.org/p/HistoryPP#Hidden_options';
+ URL_NEEDOPTIONS = 'https://miranda-ng.org/p/HistoryPP#Hidden_settings';
{
function GetText(idCtrl: Integer): AnsiString;
|