Users of my PWA+PHP wordpress plugin reported this problem to me today. It's plain PHP, so the workaround I used was to check the dimensions of the MEDIA:THUMNAIL element before sending it to the browser. Maybe this'll help somebody...
$GALLERY_THUMBSIZE = 144 // Thumbnail size you want... ... case "MEDIA:THUMBNAIL": $tnht = $xml["attributes"]["HEIGHT"]; $tnwd = $xml["attributes"]["WIDTH"]; // Make sure we've got the right "thumbnail" if (($tnht == $GALLERY_THUMBSIZE) || ($tnwd == $GALLERY_THUMBSIZE)) { $thumb = trim($val["attributes"]["URL"] . "\n"); } break; Scott On May 26, 9:21 am, mdj <markdonnaj...@googlemail.com> wrote: > I'm sure you guys are frantically working on fixing the issue but do > you have any ETA when this will be? > > The date of this will probably determine whether alot of people need > to put in your suggested workarounds. -- You received this message because you are subscribed to the Google Groups "Google Picasa Web Albums API" group. To post to this group, send email to google-picasa-data-api@googlegroups.com. To unsubscribe from this group, send email to google-picasa-data-api+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-picasa-data-api?hl=en.