Browse Source

Fixed wrong date in album view when takestamp is null

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

+ 1 - 1
php/modules/Album.php

@@ -99,7 +99,7 @@ class Album extends Module {
 			$photo['nextPhoto']			= '';
 			$photo['thumbUrl']			= LYCHEE_URL_UPLOADS_THUMB . $photo['thumbUrl'];
 
-			if ($photo['takestamp']!=='0') {
+			if (isset($photo['takestamp'])&&$photo['takestamp']!=='0') {
 				$photo['cameraDate']	= 1;
 				$photo['sysdate']		= date('d F Y', $photo['takestamp']);
 			}