--- picasa_node_album_old.module	2010-08-17 02:27:36.000000000 -0500
+++ picasa_node_album.module	2010-10-26 11:05:24.234892000 -0500
@@ -313,6 +313,8 @@ function _picasa_node_album_get_image_da
   $camera = "";
   $contentUrl = "";
   $firstThumbnailUrl = "";
+  $title = "";
+  $summary = "";
 
   $albumId = $photoEntry->getGphotoAlbumId()->getText();
   $photoId = $photoEntry->getGphotoId()->getText();
@@ -334,6 +336,9 @@ function _picasa_node_album_get_image_da
     $mediaThumbnailArray = $photoEntry->getMediaGroup()->getThumbnail();
     $firstThumbnailUrl = $mediaThumbnailArray[0]->getUrl();
   }
+  
+  $title = $photoEntry->getTitle()->getText();
+  $summary = $photoEntry->getSummary()->getText();
 
   $image = array();
   $image['album_id'] = $albumId;
@@ -341,6 +346,8 @@ function _picasa_node_album_get_image_da
   $image['camera'] = $camera;
   $image['image'] = $contentUrl;
   $image['thumbnail'] = $firstThumbnailUrl;
+  $image['title'] = $title;
+  $image['summary'] = $summary;
 
   return $image;
 }
