1
0

Fix: http request for akismet missed the method (#411)

This commit is contained in:
onli
2016-06-23 13:00:21 +02:00
parent d973e99933
commit f9482cc1aa

View File

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