From 891fdf7a383c57143d66d09566b0e2b295a418e7 Mon Sep 17 00:00:00 2001 From: crschmidt Date: Thu, 22 Jun 2006 19:11:09 +0000 Subject: [PATCH] 'true', in quotes, not true. we're checking the value that's being passed through to the WMS server. git-svn-id: http://svn.openlayers.org/trunk/openlayers@683 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- lib/OpenLayers/Layer/WMS.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/OpenLayers/Layer/WMS.js b/lib/OpenLayers/Layer/WMS.js index 9e1f536435..d0e21f7f50 100644 --- a/lib/OpenLayers/Layer/WMS.js +++ b/lib/OpenLayers/Layer/WMS.js @@ -47,7 +47,7 @@ OpenLayers.Layer.WMS.prototype = * @type Boolean */ isBaseLayer: function() { - return (this.params.TRANSPARENT != true); + return (this.params.TRANSPARENT != 'true'); }, /**