Skip to content


phpFlickr 1.4.1 is out!

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.

Posted in Releases.