Ignore:
Timestamp:
2017-04-07T00:18:07+02:00 (7 years ago)
Author:
Don-vip
Message:

fix #14613 - Special HTML characters not escaped in GUI error messages

File:
1 edited

Legend:

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

    r11553 r11848  
    298298        StringBuilder sb = new StringBuilder(128);
    299299        sb.append("<html><body>")
    300           .append(description == null ? tr("no description available") : description);
     300          .append(description == null ? tr("no description available") : Utils.escapeReservedCharactersHTML(description));
    301301        if (link != null) {
    302302            sb.append(" <a href=\"").append(link).append("\">").append(tr("More info...")).append("</a>");
Note: See TracChangeset for help on using the changeset viewer.