Replaced deprecaded Expires headers by Cache-Control
[bizou.git] / functions.php
index 162b01e..ebad504 100644 (file)
@@ -32,6 +32,7 @@ function getImageLink($imageSimplePath)
 }
 }
 
+if (! function_exists('getPreview')) {
 function getPreview($imgFile, $maxSize = THUMB_SIZE)
 {
        # example: data/myalbum/100.mypic.jpg
@@ -63,10 +64,11 @@ function getPreview($imgFile, $maxSize = THUMB_SIZE)
                        return $imgFile;
                }
 
-               # uncomment this if you need group writable files
-               #umask(0002);
+               # config to allow group writable files
+               umask(DATA_UMASK);
                # create the thumbs directory recursively
-               if (! is_dir(dirname($newImgFile))) mkdir(dirname($newImgFile), 0777, true);
+               if (! is_dir(dirname($newImgFile))) @mkdir(dirname($newImgFile), 0777, true)
+                       or die("Could not write in data dir. Please fix permissions.");
 
                if ($w > $h) {
                        $newW = $maxSize;
@@ -91,6 +93,7 @@ function getPreview($imgFile, $maxSize = THUMB_SIZE)
 
        return $newImgFile;
 }
+}
 
 function getAlbumPreview($dir)
 {
@@ -103,13 +106,14 @@ function getAlbumPreview($dir)
        } else if (is_file("$previewFile.png")) {
                return "$previewFile.png";
        } else {
-               # uncomment this if you need group writable files
-               #umask(0002);
+               # config to allow group writable files
+               umask(DATA_UMASK);
                # create the thumbs directory recursively
-               if (! is_dir(dirname($previewFile))) mkdir(dirname($previewFile), 0777, true);
+               if (! is_dir(dirname($previewFile))) @mkdir(dirname($previewFile), 0777, true)
+                       or die("Could not write in data dir. Please fix permissions.");
 
                // no preview: look for a preview in current dir, write it, return it
-               foreach (scandir($dir) as $file) if ($file != '.' and $file != '..') {
+               foreach (scandir($dir) as $file) if ($file[0] != '.') {
                        $ext = strtolower(substr($file, -4));
                        if ($ext == ".jpg" or $ext == ".png") {
                                $thumb = getPreview("$dir/$file");