Changeset 12233


Ignore:
Timestamp:
2006-07-14T15:34:09+12:00 (18 years ago)
Author:
mdewsnip
Message:

Fixed a small problem with rtf_to_html() where negative numbers are left in the resulting HTML.

File:
1 edited

Legend:

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

    r12232 r12233  
    10211021    $rtf_string =~ s/\\i\\/<i>\\/g;
    10221022    $rtf_string =~ s/\\~/ /g;
    1023     $rtf_string =~ s/\\([A-Za-z0-9]+)//g;
     1023    $rtf_string =~ s/\\([A-Za-z0-9\-]+)//g;
    10241024    $rtf_string =~ s/\}//g;
    10251025
Note: See TracChangeset for help on using the changeset viewer.