From ebaa5066fcbf96e83e7be322ce8644523e979bab Mon Sep 17 00:00:00 2001 From: crschmidt Date: Tue, 26 May 2009 16:59:40 +0000 Subject: [PATCH] Fix a broken aspect of my change to the ArcXML code when cleaning it up: missed an 'arcxml' -> 'response' change. Caught by dzwarg, r=me, (Pullup #2110) git-svn-id: http://svn.openlayers.org/trunk/openlayers@9412 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- lib/OpenLayers/Layer/ArcIMS.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/OpenLayers/Layer/ArcIMS.js b/lib/OpenLayers/Layer/ArcIMS.js index b3a1ddb791..834fdcd51b 100644 --- a/lib/OpenLayers/Layer/ArcIMS.js +++ b/lib/OpenLayers/Layer/ArcIMS.js @@ -412,7 +412,7 @@ OpenLayers.Layer.ArcIMS = OpenLayers.Class(OpenLayers.Layer.Grid, { if (!arcxml.iserror()) { // if the arcxml is not an error, call the callback with the features parsed - callback.call(scope, arcxml.features); + callback.call(scope, response.features); } else { // if the arcxml is an error, return null features selected callback.call(scope, null);