From 8ed0bc08f5e9e151c7804e47aab402a523718568 Mon Sep 17 00:00:00 2001 From: Marc MAURICE Date: Thu, 30 Dec 2010 11:16:33 +0100 Subject: [PATCH] Some typo simplification for the getThumbTarget call --- index.php | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/index.php b/index.php index ff50603..8a69018 100644 --- a/index.php +++ b/index.php @@ -138,11 +138,7 @@ foreach (scandir($realDir) as $file) if ($file != '.' and $file != '..') { $ext = strtolower(substr($file, -4)); if ($ext == ".jpg" or $ext == ".png") { - $link = dirname($scriptUrlPath)."/$realDir/$file"; - $link = getThumbTarget("$shortPath/$file"); - - $imageFiles[] = array( "name" => $file, "url" => getPreview("$realDir/$file"), "link" => $link ); - + $imageFiles[] = array( "name" => $file, "url" => getPreview("$realDir/$file"), "link" => getThumbTarget("$shortPath/$file") ); } else { $otherFiles[] = array( "name" => $file, "link" => dirname($scriptUrlPath)."/$realDir/$file" ); } -- 1.7.10.4