From 8f62c7320323216cade8b54256761adaf270f91d Mon Sep 17 00:00:00 2001 From: Ed Sanders Date: Fri, 15 Feb 2013 13:54:47 -0800 Subject: [PATCH] (bug 45054) Fix rsvg converter command line when thumbnailing. Change-Id: Ia6c1d4e5d61629e9651495ee92fe1c7298a50ef1 --- includes/DefaultSettings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 70f95399dd..1945bd2537 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -877,7 +877,7 @@ $wgSVGConverters = array( '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', - 'rsvg' => '$path/rsvg -w$width -h$height $input $output', + '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