Changeset 11452


Ignore:
Timestamp:
2006-03-21T17:00:06+12:00 (18 years ago)
Author:
mdewsnip
Message:

Yet more subtle XML escaping -- there must be something weird going on here.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/bin/script/gti.pl

    r11449 r11452  
    793793{
    794794    my $text = shift(@_);
    795     $text =~ s/\&/\&amp\;amp\;/g;
     795    $text =~ s/\&/\&amp\;/g;
     796    $text =~ s/\&amp\;lt\;/\&amp\;amp\;lt\;/g;
     797    $text =~ s/\&amp\;gt\;/\&amp\;amp\;gt\;/g;
    796798    $text =~ s/</\&lt\;/g;
    797799    $text =~ s/>/\&gt\;/g;
Note: See TracChangeset for help on using the changeset viewer.