Fix lack of return value.

git-svn-id: http://svn.openlayers.org/trunk/openlayers@383 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
crschmidt
2006-05-26 00:46:12 +00:00
parent 109773f56b
commit 0e7e831f0d

View File

@@ -674,7 +674,7 @@ OpenLayers.Util.alphaHack = function() {
var arVersion = navigator.appVersion.split("MSIE");
var version = parseFloat(arVersion[1]);
var alphaHack = ( (document.body.filters) &&
return ( (document.body.filters) &&
(version >= 5.5) && (version < 7) );
}