fix wrong variable name

This commit is contained in:
Georg Ehrke 2013-09-25 13:11:32 +02:00 committed by Morris Jobke
parent 3b5dc51be4
commit e078fc3eda
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ class Unknown extends Provider {
if (extension_loaded('imagick') && file_exists($svgPath)) {
$svg = new \Imagick();
$svg->setBackgroundColor(new \ImagickPixel('transparent'));
$svg->readImage($path);
$svg->readImage($svgPath);
$svg->setImageFormat('png32');
$image = new \OC_Image();