From: Jakub Vrana Date: Sat, 1 Dec 2018 16:46:07 +0000 (+0100) Subject: Do not pass unused parameter X-Git-Tag: 1.34.0-rc.0~3381^2 X-Git-Url: http://git.cyclocoop.org/%27%2C%20%20%20quote_amp%28%24url%29%2C%20%20%20%27?a=commitdiff_plain;h=2381dd80ad7d440674d7c987fe87d0320934c467;p=lhc%2Fweb%2Fwiklou.git Do not pass unused parameter Found by PHPStan. Change-Id: I760e7382931ac00317319bee5223b0230b24bb7d --- diff --git a/includes/media/Exif.php b/includes/media/Exif.php index 9977f45abd..c32a72052d 100644 --- a/includes/media/Exif.php +++ b/includes/media/Exif.php @@ -290,7 +290,7 @@ class Exif { $this->byteOrder = 'BE'; // BE seems about twice as popular as LE in jpg's. } - $this->debugFile( $this->basename, __FUNCTION__, true ); + $this->debugFile( __FUNCTION__, true ); if ( function_exists( 'exif_read_data' ) ) { Wikimedia\suppressWarnings(); $data = exif_read_data( $this->file, 0, true );