Browse Source

Removed data overhead = less data transferred when opening a photo

Tobias Reich 11 years ago
parent
commit
30a312679c
1 changed files with 5 additions and 0 deletions
  1. 5 0
      php/modules/photo.php

+ 5 - 0
php/modules/photo.php

@@ -36,6 +36,11 @@ function getPhoto($photoID, $albumID) {
 
 	unset($return['album_public']);
 
+	// Remove unused items
+	foreach ($return as $key => $value) {
+		if (is_int($key)) unset($return[$key]);
+	}
+
 	return $return;
 
 }