Ignore:
Timestamp:
2017-04-07T00:18:07+02:00 (9 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/gui/layer/gpx/ConvertToDataLayerAction.java

    r11486 r11848  
    151151        JPanel msg = new JPanel(new GridBagLayout());
    152152        msg.add(new JLabel(
    153                 // CHECKSTYLE.OFF: LineLength
    154                 tr("<html>Upload of unprocessed GPS data as map data is considered harmful.<br>If you want to upload traces, look here:</html>")),
    155                 // CHECKSTYLE.ON: LineLength
     153                tr("<html>Upload of unprocessed GPS data as map data is considered harmful.<br>"
     154                        + "If you want to upload traces, look here:</html>")),
    156155                GBC.eol());
    157156        msg.add(new UrlLabel(Main.getOSMWebsite() + "/traces", 2), GBC.eop());
Note: See TracChangeset for help on using the changeset viewer.