? .DS_Store
? paul.booker.205391.patch
Index: flickr_block.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/flickr/block/flickr_block.module,v
retrieving revision 1.14
diff -r1.14 flickr_block.module
177a178
>   $random_photos = array();
180d180
< 
190c190,197
<       $output .= theme('flickr_block_photo', $photos['photo'][$index], $size);
---
>       $photo_id = $photos['photo'][$index]['id'];
>       if (in_array($photo_id, $random_photos)) {
>         $i--; // photo already added 
>       } 
>       else {
>         $random_photos[] = $photo_id; 
>         $output .= theme('flickr_block_photo', $photos['photo'][$index], $size); 
>       }
192c199
<   }
---
>   } 
