]> git.mjollnir.org Git - s9y.git/commitdiff
fix parse problem for the latest trackback-check change
authorgarvinhicking <garvinhicking>
Wed, 11 Jan 2006 15:57:07 +0000 (15:57 +0000)
committergarvinhicking <garvinhicking>
Wed, 11 Jan 2006 15:57:07 +0000 (15:57 +0000)
plugins/serendipity_event_spamblock/serendipity_event_spamblock.php

index 641f56de9d802a5424af8f24c60cbb606aee3cc8..06f96760392823d24a53b37cdda1c30a89f2c92d 100644 (file)
@@ -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));