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/EMAILPlug.pm

    r10218 r10254  
    6363
    6464# 12/05/02 Added usage datastructure - John Thompson
     65package EMAILPlug;
    6566
    6667use strict;
    6768no strict "refs"; # so we can use a variable as a filehandle for print $out
    6869
    69 package EMAILPlug;
    7070
    7171use SplitPlug;
    72 # EMAILPlug is a sub-class of SplitPlug.
    73 @EMAILPlug::ISA = ('SplitPlug');
    74 
    7572use unicode;  # gs conv functions
    7673use gsprintf 'gsprintf'; # translations
     
    7976use util;
    8077
     78sub BEGIN {
     79    @EMAILPlug::ISA = ('SplitPlug');
     80}
    8181
    8282
Note: See TracChangeset for help on using the changeset viewer.