LinkTitles icon indicating copy to clipboard operation
LinkTitles copied to clipboard

Deprecated Message on Mediawiki 1.4 with latest Version

Open Domoel opened this issue 1 year ago • 1 comments

I get the following error when using the extension on Mediawiki 1.40.

image

Could somebody explain to me how to fix it?

Edit:

My LocalSettings.php does contain the following config for the extension:

LinkTitles Settings

$wgLinkTitlesParseOnEdit = true; $wgLinkTitlesParseOnRender = true; $wgLinkTitlesSpecialPageReloadAfter = 1;

When I disable these settings the error disappears. Do I have to change something here?

Domoel avatar Jul 23 '23 10:07 Domoel

A couple of deprecation warnings have crept up with the last several releases of MediaWiki. Hopefully I can look into it soon.

In the meantime, you can disable the warnings by changing your LocalSettings.php

$wgShowDebug = false;
$wgDevelopmentWarnings = false;

Alternatively:

$wgDeprecationReleaseLimit = '1.0';

You don't need to change the LinkTitles settings.

bovender avatar Jul 24 '23 17:07 bovender