From d5cedba6a290d5ddf19cd335322c8a58ef089568 Mon Sep 17 00:00:00 2001 From: garvinhicking Date: Wed, 11 Jan 2006 15:57:07 +0000 Subject: [PATCH] fix parse problem for the latest trackback-check change --- .../serendipity_event_spamblock/serendipity_event_spamblock.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)); -- 2.39.5