foo
authorocto <octo>
Wed, 13 Apr 2005 14:01:15 +0000 (14:01 +0000)
committerocto <octo>
Wed, 13 Apr 2005 14:01:15 +0000 (14:01 +0000)
lib/Onis/Data/Core.pm

index 4e7e05b..2925756 100644 (file)
@@ -48,18 +48,13 @@ qw(
 @Onis::Data::Core::ISA = ('Exporter');
 
 our $PluginCallbacks = {};
-our $OUTPUT   = [];
+our $OutputCallbacks = [];
 our @AllNicks = ();
-our @ALLNAMES = ();
 
 our %NickToNick = ();
 our %NickToIdent = ();
 our %IdentToNick = ();
 
-our $LASTRUN_DAYS = 0;
-
-
-
 our $UNSHARP = 'MEDIUM';
 if (get_config ('unsharp'))
 {
@@ -684,7 +679,7 @@ MESSAGE
        
        calculate_nicks ();
 
-       for (@$OUTPUT)
+       for (@$OutputCallbacks)
        {
                &$_ ();
        }
@@ -709,9 +704,9 @@ sub register_plugin
                return (undef);
        }
 
-       if ($type eq 'OUTPUT')
+       if ($type eq 'OutputCallbacks')
        {
-               push (@$OUTPUT, $sub_ref);
+               push (@$OutputCallbacks, $sub_ref);
        }
        else
        {