phpFlickr 1.4.1 is out!

Posted on Friday 2 December 2005

You can now go to the download page at SourceForge to get the newest version of phpFlickr. This version fixes a few bugs, including the bugs that were causing PHP notices.

Important: The devs at Flickr have added a parameter to the flickr.groups.pools.getPhotos method. To keep in line with their documentation, I had to stick it in the middle of the parameters for the phpFlickr::groups_pools_getPhotos() function. It's now the third parameter. This means that if you are using this function and you're using more than the first two parameters you'll break your app if you upgrade. I understand that this is annoying, but it's probably for the best for the long run. If you don't want to use this new "user_id" parameter and you're using more than two parameters with that function, just add a null value to the function call. For example:
$p = $f->groups_pools_getPhotos("46744914@N00", "red", "license", 1);
would become:
$p = $f->groups_pools_getPhotos("46744914@N00", "red", NULL, "license", 1);

I hope this doesn't cause too much confusion.


  1.  
    December 3, 2005 | 2:22 am
     
    Thanks Dan, I'm happily discovering the world of Flickr, and your class is exactly what I was after. Thanks for the udate! Wayde.

Sorry, the comment form is closed at this time.