From: Raimond Spekking Date: Mon, 20 Aug 2007 21:37:48 +0000 (+0000) Subject: Fix a regression from r24808: X-Git-Tag: 1.31.0-rc.0~51714 X-Git-Url: http://git.cyclocoop.org/url?a=commitdiff_plain;h=7b109cad8a5ab19104553276bb86c61e16f037e5;p=lhc%2Fweb%2Fwiklou.git Fix a regression from r24808: PHP-Notice: 'Undefined variable:' --- diff --git a/includes/Linker.php b/includes/Linker.php index de81233a49..d321e72e1e 100644 --- a/includes/Linker.php +++ b/includes/Linker.php @@ -613,7 +613,7 @@ class Linker { ); if ( $framed ) $frameParams['framed'] = true; if ( $manualthumb ) $frameParams['manualthumb'] = $manualthumb; - return $this->makeThumbLink2( $title, $file, $frameParams, $handlerParams ); + return $this->makeThumbLink2( $title, $file, $frameParams, $params ); } function makeThumbLink2( Title $title, $file, $frameParams = array(), $handlerParams = array() ) {