X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/037585db3933a2954b43bd4b30ea5e30ade00be2..1e3a35f9713631122dbe736d56aff5e5326aca52:/app/views/notes/_note.gpx.builder diff --git a/app/views/notes/_note.gpx.builder b/app/views/notes/_note.gpx.builder index 8a96db81c..9d8ede249 100644 --- a/app/views/notes/_note.gpx.builder +++ b/app/views/notes/_note.gpx.builder @@ -3,7 +3,7 @@ xml.wpt("lon" => note.lon, "lat" => note.lat) do xml.name t("browse.note.title", :id => note.id) xml.desc do - xml.cdata! render(:partial => "description", :object => note, :formats => [ :html ]) + xml.cdata! render(:partial => "description", :object => note, :formats => [:html]) end xml.link("href" => browse_note_url(note, :host => SERVER_URL)) @@ -22,8 +22,6 @@ xml.wpt("lon" => note.lon, "lat" => note.lat) do xml.date_created note.created_at xml.status note.status - if note.closed? - xml.date_closed note.closed_at - end + xml.date_closed note.closed_at if note.closed? end end