From: garvinhicking Date: Wed, 11 Jan 2006 15:57:07 +0000 (+0000) Subject: fix parse problem for the latest trackback-check change X-Git-Tag: 1.0~178 X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=d5cedba6a290d5ddf19cd335322c8a58ef089568;p=s9y.git fix parse problem for the latest trackback-check change --- diff --git a/plugins/serendipity_event_spamblock/serendipity_event_spamblock.php b/plugins/serendipity_event_spamblock/serendipity_event_spamblock.php index 641f56d..06f9676 100644 --- a/plugins/serendipity_event_spamblock/serendipity_event_spamblock.php +++ b/plugins/serendipity_event_spamblock/serendipity_event_spamblock.php @@ -415,7 +415,7 @@ var $filter_defaults; } // Check Trackback URLs? - if ($addData['type'] == 'TRACKBACK' && serendipity_db_bool($this->get_config('trackback_check_url')) { + if ($addData['type'] == 'TRACKBACK' && serendipity_db_bool($this->get_config('trackback_check_url'))) { require_once S9Y_PEAR_PATH . 'HTTP/Request.php'; $req = &new HTTP_Request($addData['url'], array('allowRedirects' => true, 'maxRedirects' => 5));