blogspam: Fix use of blogspam_options and blogspam_server config settings.

master
Joey Hess 2009-01-25 14:37:04 -05:00
parent caa6a784b0
commit ee74e61ffc
2 changed files with 6 additions and 4 deletions

View 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.

4
debian/changelog vendored
View File

@ -2,8 +2,10 @@ ikiwiki (3.03) UNRELEASED; urgency=low
* Avoid feeding decoded unicode to Term::ReadLine.
Closes: 512169
* blogspam: Log spam info on failure.
* blogspam: Log spam info on failure in debug mode.
* Remove nonstandard css. Closes: #512378
* blogspam: Fix use of blogspam_options and blogspam_server
config settings.
-- Joey Hess <joeyh@debian.org> Sun, 18 Jan 2009 14:50:57 -0500