From: Tom Hughes Date: Wed, 15 Aug 2007 18:12:37 +0000 (+0000) Subject: Fix image referred to in RSS feeds so that it actually exists. X-Git-Tag: live~8357 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/d45db3acc42f2f19ac7df25e7c7af70559cfba3d?ds=inline;hp=08b71b48e12ed1d34e8a807d913dbf9714635fc6 Fix image referred to in RSS feeds so that it actually exists. --- diff --git a/lib/osm.rb b/lib/osm.rb index f458c5135..aab3e1335 100644 --- a/lib/osm.rb +++ b/lib/osm.rb @@ -296,7 +296,7 @@ module OSM image = XML::Node.new 'image' @channel << image url = XML::Node.new 'url' - url << 'http://www.openstreetmap.org/feeds/mag_map-rss2.0.png' + url << 'http://www.openstreetmap.org/images/mag_map-rss2.0.png' image << url title = XML::Node.new 'title' title << "OpenStreetMap" diff --git a/public/images/mag_map-rss2.0.png b/public/images/mag_map-rss2.0.png new file mode 100644 index 000000000..9be473ba0 Binary files /dev/null and b/public/images/mag_map-rss2.0.png differ