Fix parse errors.
authorMatt Selsky <selsky@columbia.edu>
Sun, 2 Aug 2009 05:58:19 +0000 (01:58 -0400)
committerMatt Selsky <selsky@columbia.edu>
Sun, 2 Aug 2009 05:58:19 +0000 (01:58 -0400)
ansel/lib/View/GalleryRenderer/GalleryVimeo.php
ansel/scripts/upgrades/2008-09-16_add_original_date_values.php

index db06024..bdeb551 100644 (file)
@@ -182,7 +182,7 @@ class Ansel_View_GalleryRenderer_GalleryVimeo extends Ansel_View_GalleryRenderer
         $imgOnClick = 'return showVideo(' . $cnt . ');';
         $tile = '<div class="image-tile" id="imagetile_' . (int)$video->clip_id . '">'
             . Horde::link($video->url, $video->title, '', '', $imgOnClick, $video->title)
-            . '<img src="' Ansel::getImageUrl($image->id, 'prettythumb', true, $this->view->gallery->get('style')) . '" />' . '</a>';
+            . '<img src="' Ansel::getImageUrl($image->id, 'prettythumb', true, $this->view->gallery->get('style')) . '" />' . '</a>';
         $tile .= '<div style="valign: bottom;">';
         $tile .= ' <div class="image-tile-caption" id="' . (int)$video->clip_id . 'caption">' . $video->caption  . '</div></div></div>';
 
index b962db2..f3dcacb 100755 (executable)
@@ -22,7 +22,7 @@ if (!Horde_Cli::runningFromCLI()) {
 
 // Load the CLI environment.
 Horde_Cli::init();
-$cli  Horde_Cli::singleton();
+$cli = Horde_Cli::singleton();
 
 $ansel_authentication = 'none';
 require_once ANSEL_BASE . '/lib/base.php';