fix parse error
authorMichael J. Rubinsky <mrubinsk@horde.org>
Sun, 3 Oct 2010 18:40:50 +0000 (14:40 -0400)
committerMichael J. Rubinsky <mrubinsk@horde.org>
Sun, 3 Oct 2010 18:40:50 +0000 (14:40 -0400)
ansel/lib/Storage.php

index 3404f7f..8ea63e2 100644 (file)
@@ -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']];