*** empty log message ***
diff --git a/downloads/buildIndex.php b/downloads/buildIndex.php
index f366344..fb6cc5d 100755
--- a/downloads/buildIndex.php
+++ b/downloads/buildIndex.php
@@ -53,6 +53,7 @@
 		$i = strpos($template, "|");

 		if ($i === FALSE || $i == (strlen($template) - 1))

 			return startsWith($source, $template);

+printf($template);

 		$beginning = strstr($template, "|", true);

 		$end = substr($template, $i + 1);

 		return startsWith($source, $beginning) && endsWith($source, $end);

@@ -140,7 +141,7 @@
 				$imageSpec = $element["images"];

 				$images = "<img src=\"";

 				foreach ($imageSpec as $entry)

-					$images .= trim($entry) . "\"/>&nbsp;";

+					$images .= "<img src=\"" . trim($entry) . "\"/>&nbsp;";

 			}

 			$file = $element["file"];

 			$downloadSize = generateDropSize($file);