]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/Plugin/blogspam.pm
Merge branch 'master' of ssh://git.ikiwiki.info/srv/git/ikiwiki.info
[ikiwiki.git] / IkiWiki / Plugin / blogspam.pm
index 8462a6d1d0bb9b730e74d6684a633217654cd02b..cbd9859a533cf58dba27e1af20dc04368ab66e5e 100644 (file)
@@ -62,11 +62,11 @@ sub checkcontent (@) {
        }
 
        my $url=$defaulturl;
-       $url = $params{blogspam_server} if exists $params{blogspam_server};
+       $url = $config{blogspam_server} if exists $config{blogspam_server};
        my $client = RPC::XML::Client->new($url);
 
-       my @options = split(",", $params{blogspam_options})
-               if exists $params{blogspam_options};
+       my @options = split(",", $config{blogspam_options})
+               if exists $config{blogspam_options};
 
        # Allow short comments and whitespace-only edits, unless the user
        # has overridden min-words themselves.
@@ -83,7 +83,7 @@ sub checkcontent (@) {
        # and "buy".
        push @options, "exclude=stopwords";
 
-       my %req={
+       my %req=(
                ip => $ENV{REMOTE_ADDR},
                comment => $params{content},
                subject => defined $params{subject} ? $params{subject} : "",
@@ -92,8 +92,8 @@ sub checkcontent (@) {
                options => join(",", @options),
                site => $config{url},
                version => "ikiwiki ".$IkiWiki::version,
-       };
-       my $res = $client->send_request('testComment', %req);
+       );
+       my $res = $client->send_request('testComment', \%req);
 
        if (! ref $res || ! defined $res->value) {
                debug("failed to get response from blogspam server ($url)");