diff --git a/Hooks.php b/Hooks.php index a0f1bd998..a91a1d750 100644 --- a/Hooks.php +++ b/Hooks.php @@ -531,6 +531,10 @@ class EchoHooks { foreach ( $insertions as $key => $page ) { if ( MWNamespace::isContent( $page['pl_namespace'] ) ) { $title = Title::makeTitle( $page['pl_namespace'], $page['pl_title'] ); + if ( $title->isRedirect() ) { + continue; + } + EchoEvent::create( array( 'type' => 'page-linked', 'title' => $title,