Ignore:
Timestamp:
2009-10-05T21:39:15+02:00 (16 years ago)
Author:
Gubaer
Message:

fixed #3653: History for anonymous users should not be clickable
fixed #3518: Provide a new feature for uploading the currently selected primitives

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/tools/UrlLabel.java

    r2243 r2250  
    3434    protected void refresh() {
    3535        setContentType("text/html");
    36         setText("<html><a href=\""+url+"\">"+description+"</a></html>");
     36        if (url != null) {
     37            setText("<html><a href=\""+url+"\">"+description+"</a></html>");
     38        } else {
     39            setText("<html>" + description + "</html>");
     40        }
    3741        setToolTipText(url);
    3842    }
Note: See TracChangeset for help on using the changeset viewer.