Changeset 5783


Ignore:
Timestamp:
2003-11-05T11:26:01+13:00 (20 years ago)
Author:
mdewsnip
Message:

Now allows HTML tags in the problem solution.

File:
1 edited

Legend:

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

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