From 702c090ad3b640aba8caf99e7d024fa2ecd0c5a4 Mon Sep 17 00:00:00 2001 From: paladox Date: Sun, 21 Mar 2021 00:11:01 +0000 Subject: [PATCH] Update Extension.php --- includes/Extension.php | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/includes/Extension.php b/includes/Extension.php index 67b2665..5c8841f 100644 --- a/includes/Extension.php +++ b/includes/Extension.php @@ -69,32 +69,6 @@ class Extension { return true; } - /** - * Event handler for the PageContentSave hook. - * - * This handler is used if the parseOnEdit configuration option is set. - */ - public static function onPageContentSave( &$wikiPage, &$user, &$content, &$summary, - $isMinor, $isWatch, $section, &$flags, &$status ) { - global $wgVersion; - - if ( version_compare( $wgVersion, '1.35', '>=' ) ) { - // This hook is deprecated and does not work as intended on MW 1.32+. - // Instead we use MultiContentSave which works from 1.35+. - return true; - } - - $config = new Config(); - if ( !$config->parseOnEdit || $isMinor ) return true; - $source = Source::createFromPageandContent( $wikiPage, $content, $config ); - $linker = new Linker( $config ); - $result = $linker->linkContent( $source ); - if ( $result ) { - $content = $source->setText( $result ); - } - return true; - } - /* * Event handler for the InternalParseBeforeLinks hook. *