Ignore:
Timestamp:
2008-05-21T10:28:56+02:00 (16 years ago)
Author:
david
Message:

case >= should have condition >= not >.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/GettingStarted.java

    r627 r645  
    5353                                motdcontent = wr.read(baseurl + "/wiki/MessageOfTheDay");
    5454                        } catch (IOException ioe) {
    55                                 motdcontent = tr("<h2>(Message of the day not available)</h2>");                       
     55                                motdcontent = tr("<html>\n<h1>JOSM, the Java OpenStreetMap editor</h1>\n<h2>(Message of the day not available)</h2>");                 
    5656                        }
    5757
     
    8383                                        }
    8484                                } else if (condition.equals("%3E%3D")) {
    85                                         if ((myVersion == 0 || myVersion > targetVersion) && ! Main.pref.getBoolean("motd.ge."+targetVersion)) {
     85                                        if ((myVersion == 0 || myVersion >= targetVersion) && ! Main.pref.getBoolean("motd.ge."+targetVersion)) {
    8686                                                Main.pref.put("motd.ge."+targetVersion, true);
    8787                                                included = true;
Note: See TracChangeset for help on using the changeset viewer.