Closed (fixed)
Project:
Embedded Media Field
Version:
6.x-1.0-alpha2
Component:
Embedded Video Field
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
23 Sep 2008 at 16:08 UTC
Updated:
8 Oct 2008 at 19:02 UTC
Jump to comment: Most recent file
Comments
Comment #1
LeonidShamis commentedYes, my RSS feeds were broken until I found http://www.drupal.ru/node/19118 (sorry if you do not know Russian :))
But the following change works and resolves the 0="xmlns:media=http://search.yahoo.com/mrss/ problem:
change in emfield.rss.inc, line 123
// Workaround for http://drupal.org/node/157709.
static $been_here = FALSE;
if (! $been_here) {
/* change start - fix the next line as per http://www.drupal.ru/node/19118
$rss[] = array('namespace' => array('xmlns:media="http://search.yahoo.com/mrss/"'));
*/
$rss[] = array('namespace' => array('xmlns:media' => 'http://search.yahoo.com/mrss/'));
// change end
$been_here = TRUE;
}
Comment #2
david lesieur commentedThis is a duplicate of #301741: RSS Feed: XML Media Namespace Not correctly set. A patch was provided in that issue (implementing the same fix as proposed in #1).
Comment #3
alex ua commentedThanks- this is already applied to the dev version...
Comment #4
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.