Skip to content

Commit

Permalink
Fix bug "spieFeed Missing Item Level Images goldsky#11"
Browse files Browse the repository at this point in the history
  • Loading branch information
vierkantemeter committed Sep 7, 2014
1 parent 5f1de19 commit f6d1d49
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/components/spiefeed/model/spiefeed.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ public function getPlaceholders() {

// Media from Flickr RSS stream
if ($enclosure = $item->get_enclosure()) {
$phArray[$joinKey]['itemImageThumbnailUrl'] = $enclosure->get_thumbnail();
$phArray[$joinKey]['itemImageThumbnailUrl'] = $enclosure->get_link();
$phArray[$joinKey]['itemImageWidth'] = $enclosure->get_width();
$phArray[$joinKey]['itemImageHeight'] = $enclosure->get_height();
}
Expand Down Expand Up @@ -360,4 +360,4 @@ private function _filterModxTags($sources = array(), array $filters = array()) {
public function getError() {
return $this->_error;
}
}
}

0 comments on commit f6d1d49

Please sign in to comment.