added a check for a isa('DXNode') in PC50
+14Jun99=======================================================================
+1. changed IO::File in help and apropos to IO::File
08Jun99=======================================================================
1. Started work on the curses based operator console.
03Jun99=======================================================================
my $lang = $self->lang;
$lang = 'en' if !$lang;
-my $h = new FileHandle;
+my $h = new IO::File;
if (!open($h, "$main::localcmd/Commands_$lang.hlp")) {
if (!open($h, "$main::cmd/Commands_$lang.hlp")) {
# The fields are:- privilege level, Language, full command name, short description
#
-my $h = new FileHandle;
+my $h = new IO::File;
if (!open($h, "$main::localcmd/Commands_$lang.hlp")) {
if (!open($h, "$main::cmd/Commands_$lang.hlp")) {
if ($pcno == 50) { # keep alive/user list
my $node = DXCluster->get_exact($field[1]);
if ($node) {
+ return unless $node->isa('DXNode');
return unless $node->dxchan == $self;
$node->update_users($field[2]);
}