Ignore:
Timestamp:
2006-10-13T11:28:47+13:00 (18 years ago)
Author:
mdewsnip
Message:

Now escapes square brackets in metadata so Greenstone doesn't try to treat the text as metadata elements.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/cic-hcap/perllib/plugins/CICWordPlug.pm

    r13108 r13109  
    166166    }
    167167
     168    # Escape any '[' and ']' characters so Greenstone doesn't try to treat the text as metadata...
     169    $metadata_value =~ s/\[/&\#91;/g;
     170    $metadata_value =~ s/\]/&\#93;/g;
     171
    168172    # Remove any superscript tags
    169173    $metadata_value =~ s/\<sup\>//g;
Note: See TracChangeset for help on using the changeset viewer.