Ignore:
Timestamp:
2014-11-14T14:59:00+13:00 (9 years ago)
Author:
sjs49
Message:

Need double escaping on html entities for less than and greater than symbols for the errors in the multimedia collection to be converted to html properly.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • other-projects/nightly-tasks/diffcol/trunk/diffcol/diffcol.pl

    r29398 r29432  
    905905        if( $strOutputFormat eq "xml" ) {
    906906            $strOutput =~ s/&/&/g;
    907             $strOutput =~ s/</&lt;/g;
    908             $strOutput =~ s/>/&gt;/g;
     907            $strOutput =~ s/</&amp;lt;/g;
     908            $strOutput =~ s/>/&amp;gt;/g;
    909909        }
    910910
Note: See TracChangeset for help on using the changeset viewer.