From: Marc MAURICE Date: Thu, 30 Dec 2010 10:16:33 +0000 (+0100) Subject: Some typo simplification for the getThumbTarget call X-Git-Tag: v1.2~6 X-Git-Url: http://positon.org/gitweb/?p=bizou.git;a=commitdiff_plain;h=8ed0bc08f5e9e151c7804e47aab402a523718568 Some typo simplification for the getThumbTarget call --- 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" ); }