X-Git-Url: http://www.dxcluster.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FEditable.pm;h=d2f15eeeb144543576316a4c904f929d90b1d3e0;hb=refs%2Fheads%2Fstaging;hp=28c676ec59d2f45310ce0f05d3bfe0e184616053;hpb=b9dffeff7239952814342dad19db3a51def6fab7;p=spider.git diff --git a/perl/Editable.pm b/perl/Editable.pm index 28c676ec..d2f15eee 100644 --- a/perl/Editable.pm +++ b/perl/Editable.pm @@ -8,7 +8,7 @@ # # Copyright (c) 2001 Dirk Koopman G1TLH # -# $Id$ +# # package Editable; @@ -39,7 +39,7 @@ sub addline my $dxchan = shift; my $line = shift; - if (my @ans = BadWord::check($line)) { + if (my @ans = BadWords::check($line)) { return ($dxchan->msg('e17', @ans)); } push @{$self->{lines}}, $line; @@ -53,7 +53,7 @@ sub modline my $no = shift; my $line = shift; - if (my @ans = BadWord::check($line)) { + if (my @ans = BadWords::check($line)) { return ($dxchan->msg('e17', @ans)); } ${$self->{lines}}[$no] = $line;