Changeset 1037 in josm


Ignore:
Timestamp:
2008-10-12T01:12:31+02:00 (16 years ago)
Author:
framm
Message:
  • use "version" instead of "old_version" in 0.6 uploads. fixes #1649. unsure if this is the proper way to do it though, since what we are uploading is *not* that version but something else...
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/io/OsmWriter.java

    r769 r1037  
    217217                }
    218218                out.print(" visible='"+osm.visible+"'");
    219                 if( osm.version != -1 )
    220                         out.print( " old_version='"+osm.version+"'");
    221                 if( this.changeset != null && this.changeset.id != 0)
    222                         out.print( " changeset='"+this.changeset.id+"'" );
     219                if (osm.version != -1)
     220                        out.print(" version='"+osm.version+"'");
     221                if (this.changeset != null && this.changeset.id != 0)
     222                        out.print(" changeset='"+this.changeset.id+"'" );
    223223        }
    224224}
Note: See TracChangeset for help on using the changeset viewer.