There seems to be a small bug in anyitems v0.5 (current version which I just downloaded from AMSP) in include.php:
The lines 299 and 300 are missing the closing </a> tag, right?
$thumb_append = "' alt='".$img_title."' title='".$img_title."' class='mod_bakery_main_thumb_f' />";
$img_append = "' alt='".$img_title."' title='".$img_title."' class='mod_bakery_main_img_f' />";
should be changed to
$thumb_append = "' alt='".$img_title."' title='".$img_title."' class='mod_bakery_main_thumb_f' /></a>";
$img_append = "' alt='".$img_title."' title='".$img_title."' class='mod_bakery_main_img_f' /></a>";
Please correct me if I'm wrong, I got the hint from my validation tool.
Regards
Jochen