From 4d5577215ba1bbafa134233036eef8132f6da226 Mon Sep 17 00:00:00 2001 From: "Michael J. Rubinsky" Date: Mon, 6 Sep 2010 19:35:05 -0400 Subject: [PATCH] Fix parse error Bug: 9230 --- ansel/lib/Api.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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']); } -- 2.11.0