From: Aaron Schulz Date: Tue, 16 Sep 2008 01:38:03 +0000 (+0000) Subject: Undefined var error fix X-Git-Tag: 1.31.0-rc.0~45279 X-Git-Url: http://git.cyclocoop.org/%22.%24h.%22?a=commitdiff_plain;h=5a82431fd9550f525a20d7e6eaf6ba61b7d1a0ff;p=lhc%2Fweb%2Fwiklou.git Undefined var error fix --- diff --git a/includes/filerepo/File.php b/includes/filerepo/File.php index 0bdede5420..29b63c69f0 100644 --- a/includes/filerepo/File.php +++ b/includes/filerepo/File.php @@ -517,7 +517,7 @@ abstract class File { if ( $height != -1 ) { $params['height'] = $height; } - return $this->transform( $params, $flags ); + return $this->transform( $params, 0 ); } /**