From 62e79972efcaf78e7325714eb3f08b6568b4765c Mon Sep 17 00:00:00 2001 From: Raimond Spekking Date: Mon, 26 Mar 2007 20:57:36 +0000 Subject: [PATCH] Remove useless parameter/uninitialized variable. Thanks to Nikerabbit --- includes/SpecialWhatlinkshere.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/SpecialWhatlinkshere.php b/includes/SpecialWhatlinkshere.php index 0029da6cc1..1fb57370a3 100644 --- a/includes/SpecialWhatlinkshere.php +++ b/includes/SpecialWhatlinkshere.php @@ -244,7 +244,7 @@ class WhatLinksHerePage { $next = wfMsg( 'whatlinkshere-next', $fmtLimit ); if ( 0 != $prevId ) { - $prevLink = $this->makeSelfLink( $prev, "limit={$limit}&from={$this->back}&back={$fromId}&namespace={$namespace}" ); + $prevLink = $this->makeSelfLink( $prev, "limit={$limit}&from={$this->back}&namespace={$namespace}" ); } else { $prevLink = $prev; } -- 2.20.1