From 878a034094fa74ecc5d785a96391f386fe0ec824 Mon Sep 17 00:00:00 2001 From: nodiscc Date: Thu, 11 Sep 2014 15:13:35 +0200 Subject: [PATCH] index.php: remove trailing spaces --- index.php | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/index.php b/index.php index dadbf26..9afb637 100644 --- a/index.php +++ b/index.php @@ -103,20 +103,20 @@ function readEXIF($file) { $emodel = $exif_idf0['Model']; $efocal = $exif_idf0['FocalLength']; - //Next is only cosmectic need but give an error due to division by zero + //Next is only cosmectic need but give an error due to division by zero //list($x,$y) = preg_split('/', $efocal); //$efocal = round($x/$y,0); - + $exif_exif = exif_read_data ($file,'EXIF' ,0 ); $eexposuretime = $exif_exif['ExposureTime']; - + $efnumber = $exif_exif['FNumber']; //Next is only cosmectic need but give an error due to division by zero //list($x,$y) = preg_split('/', $efnumber); //$efnumber = round($x/$y,0); $eiso = $exif_exif['ISOSpeedRatings']; - + $exif_date = exif_read_data ($file,'IFD0' ,0 ); $edate = $exif_date['DateTime']; if (strlen($emodel) > 0 OR strlen($efocal) > 0 OR strlen($eexposuretime) > 0 OR strlen($efnumber) > 0 OR strlen($eiso) > 0) $exif_data .= "::"; @@ -171,7 +171,7 @@ $dirs = array(); { // 1. LOAD FOLDERS if (is_directory($currentdir . "/" . $file)) - { + { if ($file != "." && $file != ".." ) { checkpermissions($currentdir . "/" . $file); // Check for correct file permission @@ -201,15 +201,15 @@ $dirs = array(); } } } - } + } // 2. LOAD CAPTIONS $img_captions['']=''; if (file_exists($currentdir ."/captions.txt")) { $file_handle = fopen($currentdir ."/captions.txt", "rb"); - while (!feof($file_handle) ) - { + while (!feof($file_handle) ) + { $line_of_text = fgets($file_handle); if (empty($line_of_text)) { continue; @@ -217,7 +217,7 @@ if (file_exists($currentdir ."/captions.txt")) $parts = explode('/n', $line_of_text); foreach($parts as $img_capts) { - list($img_filename, $img_caption) = explode('|', $img_capts); + list($img_filename, $img_caption) = explode('|', $img_capts); $img_captions[$img_filename] = $img_caption; } } @@ -274,7 +274,7 @@ if (file_exists($currentdir ."/captions.txt")) if (preg_match("/.ppt$|.pptx$/i", $file)) $extension = "PPTX"; //Powerpoint if (preg_match("/.xls$|.xlsx$/i", $file)) $extension = "XLXS"; // Excel if (preg_match("/.ogv$/i", $file)) $extension = "OGV"; // OGV video - + if ($extension != "") { $files[] = array ( @@ -283,7 +283,7 @@ if (file_exists($currentdir ."/captions.txt")) "size" => filesize($currentdir . "/" . $file), "html" => "
  • " . padstring($file, 20) . "$file
  • "); } - } + } } closedir($handle); } else die("ERROR: Could not open ".htmlspecialchars(stripslashes($currentdir))." for reading!"); @@ -291,14 +291,14 @@ if (file_exists($currentdir ."/captions.txt")) //----------------------- // SORT FILES AND FOLDERS //----------------------- -if (sizeof($dirs) > 0) +if (sizeof($dirs) > 0) { foreach ($dirs as $key => $row) { if($row["name"] == "") unset($dirs[$key]); //Delete empty array entries $name[$key] = strtolower($row['name']); $date[$key] = strtolower($row['date']); - } + } if (strtoupper($sortdir_folders) == "DESC") array_multisort($$sorting_folders, SORT_DESC, $name, SORT_DESC, $dirs); else array_multisort($$sorting_folders, SORT_ASC, $name, SORT_ASC, $dirs); } @@ -374,7 +374,7 @@ if ($requestedDir != "") //Include hidden links for all images BEFORE current page so lightbox is able to browse images on different pages for ($y = 0; $y < $offset_start - sizeof($dirs); $y++) -{ +{ $breadcrumb_navigation .= ""; } @@ -407,7 +407,7 @@ for ($i = $offset_start - sizeof($dirs); $i < $offset_end && $offset_current < $ //Include hidden links for all images AFTER current page so lightbox is able to browse images on different pages if ($i<0) $i=1; for ($y = $i; $y < sizeof($files); $y++) -{ +{ $page_navigation .= ""; }