From 37dfa8b2b11e2c577a6ec45b6fd901947f98aafa Mon Sep 17 00:00:00 2001 From: Chuck Hagenbuch Date: Mon, 10 Aug 2009 00:13:14 -0400 Subject: [PATCH] fix parse error --- ansel/lib/View/GalleryRenderer/GalleryLightbox.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 = '[]'; } -- 2.11.0