Fix uninitialized var error introduced in r1600.

git-svn-id: http://svn.openlayers.org/trunk/openlayers@1602 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
Schuyler Erle
2006-10-05 18:31:32 +00:00
parent 6de0698f43
commit 1f4a53291f

View File

@@ -101,7 +101,7 @@ if (typeof(_OPENLAYERS_SFL_) == "undefined") {
var allScriptTags = "";
var host = OpenLayers._getScriptLocation() + "lib/";
for (var i = start; i < jsfiles.length; i++) {
for (var i = 0; i < jsfiles.length; i++) {
if (/MSIE/.test(navigator.userAgent)) {
var currentScriptTag = "<script src='" + host + jsfiles[i] + "'></script>";
allScriptTags += currentScriptTag;