From c06a9095df95bcf6f7257003865d6107d9eca3ef Mon Sep 17 00:00:00 2001 From: g4b0 Date: Wed, 19 Jun 2013 10:17:02 +0200 Subject: [PATCH] REGRESSION: fixed background color for PaddedImage --- model/Image.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/model/Image.php b/model/Image.php index 9bd90428b..4c42722f2 100644 --- a/model/Image.php +++ b/model/Image.php @@ -350,7 +350,7 @@ class Image extends File { * @param integer $height The height to size to * @return Image */ - public function PaddedImage($width, $height, $backgroundColor=null) { + public function PaddedImage($width, $height, $backgroundColor='FFFFFF') { return $this->isSize($width, $height) ? $this : $this->getFormattedImage('PaddedImage', $width, $height, $backgroundColor);