[Mapbender-commits] r5614 - trunk/mapbender/http/plugins

svn_mapbender at osgeo.org svn_mapbender at osgeo.org
Wed Feb 24 04:00:23 EST 2010


Author: astrid_emde
Date: 2010-02-24 04:00:20 -0500 (Wed, 24 Feb 2010)
New Revision: 5614

Modified:
   trunk/mapbender/http/plugins/mb_resultList_setVendorspecific.js
Log:
element_var name changed

Modified: trunk/mapbender/http/plugins/mb_resultList_setVendorspecific.js
===================================================================
--- trunk/mapbender/http/plugins/mb_resultList_setVendorspecific.js	2010-02-24 08:55:37 UTC (rev 5613)
+++ trunk/mapbender/http/plugins/mb_resultList_setVendorspecific.js	2010-02-24 09:00:20 UTC (rev 5614)
@@ -31,13 +31,13 @@
 		var key ="";
 		var value="";
 		var i = 0;
-		for(i in options.config){
+		for(i in options.featuretype_properties){
 			parameters  = [];
-			if(options.config[i].ftId == currentFeatureTypeId){
+			if(options.featuretype_properties[i].ftId == currentFeatureTypeId){
 
 				var j = 0;
-				for(j in options.config[i].fields){
-					key = options.config[i].fields[j];
+				for(j in options.featuretype_properties[i].fields){
+					key = options.featuretype_properties[i].fields[j];
 					value = me.model.getFeatureProperty(modelIndex, key);
 					parameters.push({ key: key, value: value});
 				}	



More information about the Mapbender_commits mailing list