frankmullenger / silverstripe-gallery

Image gallery for SilverStripe 3
23 stars 17 forks source link

Loop $orderedimages in child loop can't find Caption #25

Open pinkp opened 9 years ago

pinkp commented 9 years ago

The Caption of an image works fine as a top level page. But I'm finding it's missing if I loop the gallery images as children. Anyone else get this? Can it be resolved?

<% loop Children %> <% loop $OrderedImages %> $Caption <% end_loop %> <% end_loop %>

The images loop and so does the filename but no Caption

christopher-s commented 9 years ago

I found the problem...

Find "code/Gallery.php", and then look for the "Caption()" function.

Remove this if statement check, leaving the contents of the if block intact:

if(is_object($table)) {
lindsaywilson commented 9 years ago

Thanks for this solution, the fix hasnt as yet been commited