From eef7b9be2ac03740f8938f60c59b90b8d590fb0c Mon Sep 17 00:00:00 2001 From: "Mark A. Hershberger" Date: Tue, 10 Dec 2013 08:33:04 -0500 Subject: [PATCH] Attempt to fix problems noted in phpcs. Seen at https://integration.wikimedia.org/ci/job/mediawiki-core-phpcs-strict-HEAD/4724/console Change-Id: I1bcec887849f726cf0015a3a3a44bfc1f797658c --- includes/DefaultSettings.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index a74f4ad799..a79bc41e3a 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -937,7 +937,8 @@ $wgSVGConverters = array( 'ImageMagick' => '$path/convert -background white -thumbnail $widthx$height\! $input PNG:$output', 'sodipodi' => '$path/sodipodi -z -w $width -f $input -e $output', 'inkscape' => '$path/inkscape -z -w $width -f $input -e $output', - 'batik' => 'java -Djava.awt.headless=true -jar $path/batik-rasterizer.jar -w $width -d $output $input', + 'batik' => 'java -Djava.awt.headless=true -jar $path/batik-rasterizer.jar -w $width -d '. + '$output $input', 'rsvg' => '$path/rsvg -w $width -h $height $input $output', 'imgserv' => '$path/imgserv-wrapper -i svg -o png -w$width $input $output', 'ImagickExt' => array( 'SvgHandler::rasterizeImagickExt' ), -- 2.20.1