Generate aliases for case-mismatched page titles.

If a page title does has a different case than an occurrence of the same
word(s) on the page that is being edited, the extension will now
automatically generate 'piped' links such as [[Linking titles|Linking
Titles]].
This commit is contained in:
Daniel Kraus
2013-01-26 18:22:27 +01:00
parent 455f333c28
commit a448b8632b
4 changed files with 25 additions and 8 deletions

View File

@ -42,14 +42,14 @@
$wgLinkTitlesFirstOnly = false;
$wgLinkTitlesWordStartOnly = true;
$wgLinkTitlesWordEndOnly = true;
$wgLinkTitlesIgnoreCase = true;
// $wgLinkTitlesIgnoreCase = true;
$wgExtensionCredits['parserhook'][] = array(
'path' => __FILE__,
'name' => 'LinkTitles',
'author' => '[http://www.mediawiki.org/wiki/User:Bovender Daniel Kraus]',
'url' => 'http://www.mediawiki.org/wiki/Extension:LinkTitles',
'version' => '1.7.0',
'version' => '1.8.1',
'descriptionmsg' => 'linktitles-desc'
);