add if you swear 3 or more times you are unceremoniously logged out
[spider.git] / perl / DXChannel.pm
index 01d2135e657e834eac2bf100d5e61f2e443f6036..580783a6a466383f2ae8fac35106c03d2f38e38f 100644 (file)
@@ -106,6 +106,8 @@ $count = 0;
                  disconnecting => '9,Disconnecting,yesno',
                  ann_talk => '0,Suppress Talk Anns,yesno',
                  metric => '1,Route metric',
+                 badcount => '1,Bad Word Count',
+                 edit => '7,Edit Function',
                 );
 
 use vars qw($VERSION $BRANCH);
@@ -506,8 +508,9 @@ sub rspfcheck
 {
        my ($self, $flag, $node, $user) = @_;
        my $nref = Route::Node::get($node);
-       if ($nref) {
-           if ($nref->dxchan == $self) {
+       my $dxchan = $nref->dxchan if $nref;
+       if ($nref && $dxchan) {
+           if ($dxchan == $self) {
                        return 1 unless $user;
                        my @users = $nref->users;
                        return 1 if @users == 0 || grep $user eq $_, @users;
@@ -544,7 +547,7 @@ sub broadcast_nodes
 
 # broadcast a message to all clusters ignoring isolation
 # [except those mentioned after buffer]
-sub broadcast_all_ak1a
+sub broadcast_all_nodes
 {
        my $s = shift;                          # the line to be rebroadcast
        my @except = @_;                        # to all channels EXCEPT these (dxchannel refs)