Changeset 12134


Ignore:
Timestamp:
2006-07-11T13:26:17+12:00 (18 years ago)
Author:
mdewsnip
Message:

Replaced all ' characters with ' in the static macrofiles.

File:
1 edited

Legend:

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

    r12132 r12134  
    11491149    my $id = $full_name_to_id_mapping{$full_names[$i]};
    11501150    my $name = $id_to_name_mapping->{$id};
     1151    $name =~ s/'/'/g;  # ' # (for Emacs)
    11511152    my $extra = $id_to_extra_mapping->{$id} || "";
    11521153    print BROWSER_MACROFILE "<td valign=\"top\"><a href=\"_gwcgi_?a=d&d=$id\">$name</a>$extra</td>";
     
    11561157        $id = $full_name_to_id_mapping{$full_names[$i+$half_point]};
    11571158        $name = $id_to_name_mapping->{$id};
     1159        $name =~ s/'/&apos;/g;  # ' # (for Emacs)
    11581160        $extra = $id_to_extra_mapping->{$id} || "";
    11591161        print BROWSER_MACROFILE "<a href=\"_gwcgi_?a=d&d=$id\">$name</a>$extra";
Note: See TracChangeset for help on using the changeset viewer.