@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'))
{
calculate_nicks ();
- for (@$OUTPUT)
+ for (@$OutputCallbacks)
{
&$_ ();
}
return (undef);
}
- if ($type eq 'OUTPUT')
+ if ($type eq 'OutputCallbacks')
{
- push (@$OUTPUT, $sub_ref);
+ push (@$OutputCallbacks, $sub_ref);
}
else
{