From 8e725555ed2558bb81ad31a44a0c1090a8d5cb82 Mon Sep 17 00:00:00 2001 From: Aryeh Gregor Date: Sun, 3 Aug 2008 15:37:35 +0000 Subject: [PATCH] (bug 15023) Another cosmetic regression from Linker changes: section link arrow in history comments should not be formatted as a stub (or redirect, or nonexistent page). --- includes/Linker.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/includes/Linker.php b/includes/Linker.php index f9eb94b533..6761231187 100644 --- a/includes/Linker.php +++ b/includes/Linker.php @@ -1238,7 +1238,9 @@ class Linker { $sectionTitle = wfClone( $title ); $sectionTitle->mFragment = $section; } - $link = $this->link( $sectionTitle, wfMsgForContent( 'sectionlink' ) ); + $link = $this->link( $sectionTitle, + wfMsgForContent( 'sectionlink' ), array(), array(), + 'noclasses' ); } $auto = $link . $auto; if( $pre ) { -- 2.20.1