From 7ded9faece78aa17ea6fe67c3e3a4ba33ad69f14 Mon Sep 17 00:00:00 2001 From: "Michael J. Rubinsky" Date: Sun, 3 Oct 2010 14:40:50 -0400 Subject: [PATCH] fix parse error --- ansel/lib/Storage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansel/lib/Storage.php b/ansel/lib/Storage.php index 3404f7ffc..8ea63e201 100644 --- a/ansel/lib/Storage.php +++ b/ansel/lib/Storage.php @@ -626,7 +626,7 @@ class Ansel_Storage $return = array(); while ($image = $images->fetchRow(MDB2_FETCHMODE_ASSOC)) { - $image['image_filename'] = Horde_String::convertCharset($image['image_filename'], $GLOBALS['conf']['sql']['charset'], 'UTF-8' + $image['image_filename'] = Horde_String::convertCharset($image['image_filename'], $GLOBALS['conf']['sql']['charset'], 'UTF-8'); $image['image_caption'] = Horde_String::convertCharset($image['image_caption'], $GLOBALS['conf']['sql']['charset'], 'UTF-8'); $return[$image['image_id']] = new Ansel_Image($image); $this->_images[(int)$image['image_id']] = &$return[$image['image_id']]; -- 2.11.0