Photo::scaleImageSquare was giving an inexistent variable to scaleImage.

2022.09-rc
Domovoy 2012-07-22 14:22:47 +02:00
rodzic 06a6b22c97
commit f723f756fd
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -365,7 +365,7 @@ class Photo {
if($this->is_imagick()) {
$this->image->setFirstIterator();
do {
$this->image->resizeImage($max, $max, imagick::FILTER_LANCZOS, 1, false);
$this->image->resizeImage($dim, $dim, imagick::FILTER_LANCZOS, 1, false);
} while ($this->image->nextImage());
return;
}