From a84e06a0753a58c27d57d4c6da2e09abbee476a5 Mon Sep 17 00:00:00 2001 From: Tim Schaub Date: Mon, 5 Oct 2009 22:32:25 +0000 Subject: [PATCH] WMSCapabilities format should call initialize on the XML format. r=crschmidt (closes #2269) git-svn-id: http://svn.openlayers.org/trunk/openlayers@9705 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- lib/OpenLayers/Format/WMSCapabilities.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/OpenLayers/Format/WMSCapabilities.js b/lib/OpenLayers/Format/WMSCapabilities.js index b78af25ae8..cee33eb832 100644 --- a/lib/OpenLayers/Format/WMSCapabilities.js +++ b/lib/OpenLayers/Format/WMSCapabilities.js @@ -38,7 +38,7 @@ OpenLayers.Format.WMSCapabilities = OpenLayers.Class(OpenLayers.Format.XML, { * this instance. */ initialize: function(options) { - OpenLayers.Format.prototype.initialize.apply(this, [options]); + OpenLayers.Format.XML.prototype.initialize.apply(this, [options]); this.options = options; },