From: Michael J. Rubinsky Date: Sun, 3 Oct 2010 18:40:50 +0000 (-0400) Subject: fix parse error X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=7ded9faece78aa17ea6fe67c3e3a4ba33ad69f14;p=horde.git fix parse error --- 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']];