Problem: The feed link generated for the "Galleries" page is broken.

Fix: A change to line 37 in media_gallery.pages.inc from this:

  drupal_add_feed(url('taxonomy/term/' . $term->tid . '/feed'), 'RSS - ' . $term->name);

to this:

  drupal_add_feed('taxonomy/term/' . $term->tid . '/feed', 'RSS - ' . $term->name);
CommentFileSizeAuthor
#2 media_gallery-rss-02.patch541 bytesCogito

Comments

stephandale’s picture

I can confirm the problem and that this fix works for me.

Cogito’s picture

Status: Active » Needs review
StatusFileSize
new541 bytes

I can confirm that this patch fixes the rss feed link. Here it is ready to be applied.

It was interesting to discover that I could enable the RSS view to be able to configure what came up in the stream. The default settings looked ridiculous. I should probably make a feature request for this too, however it would be nice to be able to turn the rss feed link off, so that it does not appear. I could find no way of doing this currently.

effulgentsia’s picture

Version: 7.x-1.0-beta3 » 7.x-1.x-dev
Status: Needs review » Fixed

Thanks. Committed to 7.x-1.x.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

Tanzaho’s picture

I am deeply sorry to re-open this issue, but where can I find the feed link on a gallery ? I am struggling to find the feature, but cannot do it.

I would like to display a feed with the latest media uploaded to a gallery.