From: Raimond Spekking Date: Mon, 26 Mar 2007 20:57:36 +0000 (+0000) Subject: Remove useless parameter/uninitialized variable. X-Git-Tag: 1.31.0-rc.0~53599 X-Git-Url: http://git.cyclocoop.org/%28?a=commitdiff_plain;h=62e79972efcaf78e7325714eb3f08b6568b4765c;p=lhc%2Fweb%2Fwiklou.git Remove useless parameter/uninitialized variable. Thanks to Nikerabbit --- 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; }