From: Michael J. Rubinsky Date: Mon, 6 Sep 2010 23:35:05 +0000 (-0400) Subject: Fix parse error X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=4d5577215ba1bbafa134233036eef8132f6da226;p=horde.git Fix parse error Bug: 9230 --- diff --git a/ansel/lib/Api.php b/ansel/lib/Api.php index 9b360fd6e..4555213ff 100644 --- a/ansel/lib/Api.php +++ b/ansel/lib/Api.php @@ -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']); }