I managed to solved this myself. Noticed that the sets at Flickr themselves used the same behaviour and realised that if every set is like a photoalbum of an event that would be logical. However I use the sets basically as categories, hence the wanted reverse order.
What I did is replace
<?php foreach ($photos as $photo)
with
<?php $photos_reversed = array_reverse ($photos, true); ?>
<?php foreach ($photos_reversed as $photo)
in the following templates:
- photoalbum_album.html
- photoalbum
This simply reverses the order in which the thumbnails are displayed.
Is is by the way also possible to rearrange the order in the Organize function of Flickr.
Regards
Walrick
I can confirm this error, using WP 2.8.4 and no other reCaptcha plugins on the same page. Other contact form plugin works fine. And I later installer WP-Recaptcha for comments and that works fine as well.
A fix would be appreciated.