Changeset 5245 in osm for applications/editors/josm


Ignore:
Timestamp:
2007-10-30T14:09:05+01:00 (17 years ago)
Author:
gabriel
Message:

wmsplugin: Escape spaces in URLs.

Location:
applications/editors/josm/plugins
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/wmsplugin/src/wmsplugin/WMSImage.java

    r5114 r5245  
    9494                String str = constURL + "&bbox=" + w +"," + s + ","+
    9595                                e+","+n + "&width=" + wi + "&height=" + ht;
    96                 return new URL(str);
     96                return new URL(str.replace(" ", "%20"));
    9797        }
    9898
Note: See TracChangeset for help on using the changeset viewer.