From: Michael J. Rubinsky Date: Fri, 31 Dec 2010 17:14:47 +0000 (-0500) Subject: pass the style attribute along X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=8dbce6be1a8d153690407988bbf21e2703511f72;p=horde.git pass the style attribute along --- diff --git a/ansel/lib/ImageGenerator/Mini.php b/ansel/lib/ImageGenerator/Mini.php index 2dd0b7090..9b40e5f66 100755 --- a/ansel/lib/ImageGenerator/Mini.php +++ b/ansel/lib/ImageGenerator/Mini.php @@ -15,7 +15,8 @@ class Ansel_ImageGenerator_Mini extends Ansel_ImageGenerator { $generator = Ansel_ImageGenerator::factory('SquareThumb', array('width' => min(50, $this->_dimensions['width']), 'height' => min(50, $this->_dimensions['height']), - 'image' => $this->_image)); + 'image' => $this->_image, + 'style' => $this->_params['style'])); return $generator->create(); }