From 6ed4f857eb8d8cdef9039e5ac26db044f71e8c3b Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Wed, 2 Oct 2013 14:44:24 -0700 Subject: [PATCH] Remove wfSpecialList() Has been deprecated for several releases, nothing in Git or SVN uses it. Change-Id: I899a0a76a5cb23686caaf6fd244f926a6938fe77 --- includes/GlobalFunctions.php | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/includes/GlobalFunctions.php b/includes/GlobalFunctions.php index ba60fd86e6..318b1513f4 100644 --- a/includes/GlobalFunctions.php +++ b/includes/GlobalFunctions.php @@ -1951,23 +1951,6 @@ function wfViewPrevNext( $offset, $limit, $link, $query = '', $atend = false ) { return $wgLang->viewPrevNext( $title, $offset, $limit, $query, $atend ); } -/** - * Make a list item, used by various special pages - * - * @param string $page Page link - * @param string $details Text between brackets - * @param $oppositedm Boolean Add the direction mark opposite to your - * language, to display text properly - * @return String - * @deprecated since 1.19; use Language::specialList() instead - */ -function wfSpecialList( $page, $details, $oppositedm = true ) { - wfDeprecated( __METHOD__, '1.19' ); - - global $wgLang; - return $wgLang->specialList( $page, $details, $oppositedm ); -} - /** * @todo document * @todo FIXME: We may want to blacklist some broken browsers -- 2.20.1