From 7a78237bdd2d6187ed9a6c66abaa8e5391eb8541 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Junod?= Date: Thu, 28 Jan 2010 11:37:58 +0000 Subject: [PATCH] add missing semicolon git-svn-id: http://svn.openlayers.org/trunk/openlayers@9980 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- lib/OpenLayers/Format/Atom.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/OpenLayers/Format/Atom.js b/lib/OpenLayers/Format/Atom.js index 9c0318c47d..f026a0fc6a 100644 --- a/lib/OpenLayers/Format/Atom.js +++ b/lib/OpenLayers/Format/Atom.js @@ -180,7 +180,7 @@ OpenLayers.Format.Atom = OpenLayers.Class(OpenLayers.Format.XML, { var attrib = feature.attributes; var atomAttrib = attrib.atom || {}; var atomns = this.namespaces.atom; - var georssns = this.namespaces.georss + var georssns = this.namespaces.georss; var entryNode = this.createElementNSPlus("atom:entry"); // atom:author @@ -453,11 +453,11 @@ OpenLayers.Format.Atom = OpenLayers.Class(OpenLayers.Format.XML, { nodes = this.getElementsByTagNameNS(node, atomns, "content"); if (nodes.length > 0) { value = {}; - attval = nodes[0].getAttribute("type") + attval = nodes[0].getAttribute("type"); if (attval) { value.type = attval; } - attval = nodes[0].getAttribute("src") + attval = nodes[0].getAttribute("src"); if (attval) { value.src = attval; } else {