(bug 45054) Fix rsvg converter command line when thumbnailing.
authorEd Sanders <esanders@wikimedia.org>
Fri, 15 Feb 2013 21:54:47 +0000 (13:54 -0800)
committerGerrit Code Review <gerrit@wikimedia.org>
Mon, 18 Mar 2013 02:15:30 +0000 (02:15 +0000)
Change-Id: Ia6c1d4e5d61629e9651495ee92fe1c7298a50ef1

includes/DefaultSettings.php

index 70f9539..1945bd2 100644 (file)
@@ -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' ),
 );