From: Chuck Hagenbuch Date: Mon, 10 Aug 2009 04:13:14 +0000 (-0400) Subject: fix parse error X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=37dfa8b2b11e2c577a6ec45b6fd901947f98aafa;p=horde.git fix parse error --- diff --git a/ansel/lib/View/GalleryRenderer/GalleryLightbox.php b/ansel/lib/View/GalleryRenderer/GalleryLightbox.php index 87a532e24..b482ff223 100644 --- a/ansel/lib/View/GalleryRenderer/GalleryLightbox.php +++ b/ansel/lib/View/GalleryRenderer/GalleryLightbox.php @@ -51,10 +51,10 @@ class Ansel_View_GalleryRenderer_GalleryLightbox extends Ansel_View_GalleryRende /* Get JSON data for view */ // 0 == normal, 1 == by date if ($this->mode == 0) { - $json = $this->view->json(array('full' => !empty($this->view->api)); + $json = $this->view->json(array('full' => !empty($this->view->api))); } else { if (!empty($this->date['day']) && $this->numTiles) { - $json = $this->view->json(array('full' => !empty($this->view->api)); + $json = $this->view->json(array('full' => !empty($this->view->api))); } else { $json = '[]'; }