From: Ed Sanders Date: Fri, 15 Feb 2013 21:54:47 +0000 (-0800) Subject: (bug 45054) Fix rsvg converter command line when thumbnailing. X-Git-Tag: 1.31.0-rc.0~20312 X-Git-Url: https://git.cyclocoop.org/%242?a=commitdiff_plain;h=8f62c7320323216cade8b54256761adaf270f91d;p=lhc%2Fweb%2Fwiklou.git (bug 45054) Fix rsvg converter command line when thumbnailing. Change-Id: Ia6c1d4e5d61629e9651495ee92fe1c7298a50ef1 --- 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' ), );