removing use of getArgs from the library (closes #860).

git-svn-id: http://svn.openlayers.org/trunk/openlayers@4080 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
Tim Schaub
2007-08-28 20:18:47 +00:00
parent f2ea9b4afa
commit a1c040e3c0
6 changed files with 18 additions and 12 deletions

View File

@@ -1155,7 +1155,7 @@ OpenLayers.Util.createUrlObject = function(url, options) {
var qMark = url.indexOf("?");
queryString = (qMark != -1) ? url.substr(qMark) : "";
}
urlObject.args = OpenLayers.Util.getArgs(queryString);
urlObject.args = OpenLayers.Util.getParameters(queryString);
//pathname (this part allows for relative <-> absolute comparison)