Fixing an obvious bug in Ajax.js: when we upgraded Prototype, we missed

a pair -> extras, caught by 'falstaff'. (Closes #1559) 


git-svn-id: http://svn.openlayers.org/trunk/openlayers@7677 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
crschmidt
2008-08-02 01:44:26 +00:00
parent 711d909a14
commit 61225ed98f

View File

@@ -405,7 +405,7 @@ OpenLayers.Ajax.Request = OpenLayers.Class(OpenLayers.Ajax.Base, {
}
} else {
for (var i in extras) {
headers[i] = pair[i];
headers[i] = extras[i];
}
}
}