Ignore:
Timestamp:
2005-07-19T16:27:51+12:00 (19 years ago)
Author:
kjdon
Message:

added 'use strict' to all plugins, and made modifications (mostly adding 'my') to make them compile

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/perllib/plugins/BibTexPlug.pm

    r10218 r10254  
    4545
    4646use SplitPlug;
     47use strict;
     48no strict 'refs'; # allow filehandles to be variables and viceversa
    4749
    4850# BibTexPlug is a sub-class of BasPlug.
    4951sub BEGIN {
    50     @ISA = ('SplitPlug');
     52    @BibTexPlug::ISA = ('SplitPlug');
    5153}
    5254
     
    103105    my $outhandle = $self->{'outhandle'};
    104106
     107    my $cursection = $doc_obj->get_top_section();
    105108    $self->{'key'} = "default";
    106109
Note: See TracChangeset for help on using the changeset viewer.