Changeset 31910 in osm for applications/editors/josm/plugins
- Timestamp:
- 2016-01-02T17:05:33+01:00 (9 years ago)
- Location:
- applications/editors/josm/plugins/tag2link
- Files:
-
- 8 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/tag2link/src/org/openstreetmap/josm/plugins/tag2link/Tag2LinkRuleChecker.java
r30717 r31910 110 110 try { 111 111 // Special hack for Wikipedia that prevents spaces being replaced by "+" characters, but by "_" 112 if (s.contains("wikipedia.") ) {112 if (s.contains("wikipedia.") || s.contains("commons.wikimedia.org")) { 113 113 val = val.replaceAll(" ", "_"); 114 114 }
Note:
See TracChangeset
for help on using the changeset viewer.