Browse Source

Fixed album download with double dot in filename

Tobias Reich 10 years ago
parent
commit
65094ccad5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      php/modules/Album.php

+ 1 - 1
php/modules/Album.php

@@ -295,7 +295,7 @@ class Album extends Module {
 			$extension = getExtension($photo->url);
 
 			# Set title for photo
-			$zipFileName = $zipTitle . '/' . $photo->title . '.' . $extension;
+			$zipFileName = $zipTitle . '/' . $photo->title . $extension;
 
 			# Check for duplicates
 			if (!empty($files)) {