I did the fix for the new youtube embed code. Everything is working, all thumbnails show up everywhere except the newsfeed. The code that pulls the thumb for the newsfeed (I think) is this:
if ( $thumb == "undefined" )
{
$thumb = $videoService->getClipDefaultThumbUrl();
$markup = '<div class="clearfix"><div class="ow_newsfeed_item_picture">';
$markup .= '<a style="display: block;" href="' . $url . '"><div style="width: 75px; height: 60px; background: url('.$thumb.') no-repeat center center;"></div></a>';
$markup .= '</div><div class="ow_newsfeed_item_content"><a href="' . $url . '">' . $title . '</a><div class="ow_remark">';
$markup .= $content . '</div></div></div>';
}
else
{
$markup = '<div class="clearfix ow_newsfeed_large_image"><div class="ow_newsfeed_item_picture">';
$markup .= '<a href="' . $url . '"><img src="' . $thumb . '"></a>';
$markup .= '</div><div class="ow_newsfeed_item_content"><a href="' . $url . '">' . $title . '</a><div class="ow_remark">';
$markup .= $content . '</div></div></div>';
}
The part in bold is the part that actually matters. This code, for some reason, results in this on my newsfeed.
<div class="ow_newsfeed_item_picture"><a href="http://MYWEBSITE.COM/video/view/16"><img src="" /></a></div>
So why is the img src empty? That is the part that is frustrating the crap out of me. Thumbs work everywhere except the feed. Why is this? Am I missing something, somewhere, or is this a bug?
PLEASE HELP!