Add missing ;
authorMatt Selsky <selsky@columbia.edu>
Mon, 3 Aug 2009 21:22:38 +0000 (17:22 -0400)
committerMatt Selsky <selsky@columbia.edu>
Mon, 3 Aug 2009 21:22:38 +0000 (17:22 -0400)
framework/Image/lib/Horde/Image/Gd.php
framework/Image/lib/Horde/Image/Imagick.php

index a9f9cf9..4396312 100644 (file)
@@ -784,7 +784,7 @@ class Horde_Image_Gd extends Horde_Image_Base
         error_reporting($GLOBALS['conf']['debug_level']);
         if (!empty($php_errormsg)) {
             $error_msg = $php_errormsg;
-            throw new Horde_Image_Exception($error_msg)
+            throw new Horde_Image_Exception($error_msg);
         }
         return $result;
     }
index 375f9b0..ada0134 100644 (file)
@@ -30,7 +30,7 @@ class Horde_Image_Imagick extends Horde_Image_Base
                 try {
                     $this->_imagick->newImage($this->_width, $this->_height, $this->_background);
                 } catch (ImagickException $e) {
-                    throw new Horde_Image_Exception($e)
+                    throw new Horde_Image_Exception($e);
                 }
             }