Closed mjordan closed 8 years ago
The IslandoraSolrCollectionViewHandlerTN handler returns hard-coded HTML:
return ('<img src="/islandora/object/' . $pid . '/datastream/TN/view" />');
whereas is should return the output of a theming function like the IslandoraSolrCollectionViewHandlerTeaser handler does:
return theme('islandora_solr_teaser', array('values' => $values));
PR is not showing up automatically, but it's at https://github.com/Islandora-Labs/islandora_solr_collection_view/pull/12.
Thanks very much for review and merging @rosiel, I'll close this issue.
The IslandoraSolrCollectionViewHandlerTN handler returns hard-coded HTML:
return ('<img src="/islandora/object/' . $pid . '/datastream/TN/view" />');
whereas is should return the output of a theming function like the IslandoraSolrCollectionViewHandlerTeaser handler does:
return theme('islandora_solr_teaser', array('values' => $values));