fix parse error
authorMichael J. Rubinsky <mrubinsk@horde.org>
Wed, 26 May 2010 19:38:31 +0000 (15:38 -0400)
committerMichael J. Rubinsky <mrubinsk@horde.org>
Wed, 26 May 2010 19:38:31 +0000 (15:38 -0400)
ansel/image.php

index 60431c4..fc297e6 100644 (file)
@@ -426,7 +426,7 @@ case 'resize':
         case 'crop':
             $image->load('full');
             $params = Horde_Util::getFormData('params');
-            list($x1, $y1, $x2, $y2) = explode('.', $params
+            list($x1, $y1, $x2, $y2) = explode('.', $params);
             try {
                 $result = $image->crop($x1, $y1, $x2, $y2);
             } catch (Ansel_Exception $e) {