Fix parse error
authorMichael J. Rubinsky <mrubinsk@horde.org>
Mon, 6 Sep 2010 23:35:05 +0000 (19:35 -0400)
committerMichael J. Rubinsky <mrubinsk@horde.org>
Mon, 6 Sep 2010 23:35:47 +0000 (19:35 -0400)
Bug: 9230

ansel/lib/Api.php

index 9b360fd..4555213 100644 (file)
@@ -590,7 +590,7 @@ class Ansel_Api extends Horde_Registry_Api
 
         return (string)Ansel::getImageUrl($image_id,
                                           empty($params['view']) ? 'screen': $params['view'],
-                                          empty($params['full']) ? : $params['full'],
+                                          empty($params['full']) ? false : $params['full'],
                                           empty($params['style']) ? 'ansel_default' : $params['style']);
     }