Changeset 4199 in josm for trunk/src/org


Ignore:
Timestamp:
2011-07-03T17:57:18+02:00 (13 years ago)
Author:
stoecker
Message:

don't handle links to older SVN plugins as external

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/plugins/PluginInformation.java

    r4145 r4199  
    252252            sb.append(" <a href=\"").append(link).append("\">").append(tr("More info...")).append("</a>");
    253253        }
    254         if (downloadlink != null && !downloadlink.startsWith("http://svn.openstreetmap.org/applications/editors/josm/dist/")) {
     254        if (downloadlink != null && !downloadlink.startsWith("http://svn.openstreetmap.org/applications/editors/josm/dist/")
     255        && !downloadlink.startsWith("http://trac.openstreetmap.org/browser/applications/editors/josm/dist/")) {
    255256            sb.append("<p>&nbsp;</p><p>"+tr("<b>Plugin provided by an external source:</b> {0}", downloadlink)+"</p>");
    256257        }
Note: See TracChangeset for help on using the changeset viewer.