Merge pull request #507 from th-h/thh-506

Akismet has a POST API, not a GET API. :)
This commit is contained in:
onli 2017-04-21 13:05:10 +02:00 committed by GitHub
commit 4046d811a7

View File

@ -25,7 +25,7 @@ class serendipity_event_spamblock extends serendipity_event
'smarty' => '2.6.7', 'smarty' => '2.6.7',
'php' => '4.1.0' 'php' => '4.1.0'
)); ));
$propbag->add('version', '1.86.2'); $propbag->add('version', '1.86.3');
$propbag->add('event_hooks', array( $propbag->add('event_hooks', array(
'frontend_saveComment' => true, 'frontend_saveComment' => true,
'external_plugin' => true, 'external_plugin' => true,
@ -553,7 +553,7 @@ class serendipity_event_spamblock extends serendipity_event
$req = new HTTP_Request2( $req = new HTTP_Request2(
'http://' . $api_key . '.' . $server . '/1.1/' . $action, 'http://' . $api_key . '.' . $server . '/1.1/' . $action,
HTTP_Request2::METHOD_GET, HTTP_Request2::METHOD_POST,
$opt $opt
); );