Changeset 5496


Ignore:
Timestamp:
2003-09-12T11:46:02+12:00 (21 years ago)
Author:
mdewsnip
Message:

Allowed HTML tags to be specified with "status" field.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/util/StatusHTML.java

    r5480 r5496  
    140140        if(reported_by != null) this.reported_by = reported_by.replaceAll("<", "&lt;").replaceAll(">", "&gt;");
    141141        if(solution != null) this.solution = solution.replaceAll("<", "&lt;").replaceAll(">", "&gt;");
    142         if(status != null) this.status = status.replaceAll("<", "&lt;").replaceAll(">", "&gt;");
     142        if(status != null) this.status = status;  // status.replaceAll("<", "&lt;").replaceAll(">", "&gt;");
    143143        if(test_item != null) this.test_item = test_item.replaceAll("<", "&lt;").replaceAll(">", "&gt;");
    144144    }
Note: See TracChangeset for help on using the changeset viewer.