mirror of
https://github.com/diocloid/LinkTitles.git
synced 2025-07-13 09:49:31 +02:00
Merge branch 'release-4.0.3'
This commit is contained in:
8
NEWS
8
NEWS
@ -1,3 +1,11 @@
|
||||
Version 4.0.3 (2016-11-22)
|
||||
------------------------------------------------------------------------
|
||||
|
||||
- Fix: __NOAUTOLINKS__ magic word would not be respected when saving an edited page.
|
||||
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||
|
||||
|
||||
Version 4.0.2 (2016-11-09)
|
||||
------------------------------------------------------------------------
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
],
|
||||
"type": "parserhook",
|
||||
"url": "https://www.mediawiki.org/wiki/Extension:LinkTitles",
|
||||
"version": "4.0.2",
|
||||
"version": "4.0.3",
|
||||
"license-name": "GPL-2.0+",
|
||||
"descriptionmsg": "linktitles-desc",
|
||||
"requires": {
|
||||
|
@ -71,19 +71,20 @@ class Extension {
|
||||
global $wgLinkTitlesNamespaces;
|
||||
if ( !$wgLinkTitlesParseOnEdit ) return true;
|
||||
|
||||
if ( !$isMinor && !\MagicWord::get( 'MAG_LINKTITLES_NOAUTOLINKS' )->match( $text ) ) {
|
||||
if ( !$isMinor ) {
|
||||
$title = $wikiPage->getTitle();
|
||||
|
||||
// Only process if page is in one of our namespaces we want to link
|
||||
// Fixes ugly autolinking of sidebar pages
|
||||
if ( in_array( $title->getNamespace(), $wgLinkTitlesNamespaces ))
|
||||
{
|
||||
if ( in_array( $title->getNamespace(), $wgLinkTitlesNamespaces )) {
|
||||
$text = $content->getContentHandler()->serializeContent( $content );
|
||||
if ( !\MagicWord::get( 'MAG_LINKTITLES_NOAUTOLINKS' )->match( $text ) ) {
|
||||
$newText = self::parseContent( $title, $text );
|
||||
if ( $newText != $text ) {
|
||||
$content = $content->getContentHandler()->unserializeContent( $newText );
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
return true;
|
||||
}
|
||||
|
Reference in New Issue
Block a user