Update of /cvsroot/php-blog/serendipity/plugins/serendipity_event_spamblock
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24646
Modified Files:
serendipity_event_spamblock.php
Log Message:
missed the typo
Index: serendipity_event_spamblock.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/plugins/serendipity_event_spamblock/serendipity_event_spamblock.php,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -d -r1.44 -r1.45
--- serendipity_event_spamblock.php 1 Feb 2005 10:23:04 -0000 1.44
+++ serendipity_event_spamblock.php 1 Feb 2005 10:36:33 -0000 1.45
@@ -490,7 +490,7 @@
// Filter URL
$filter_urls = explode(';', $this->get_config('filter_urls', $this->filter_defaults['urls']));
if (is_array($filter_urls)) {
- foreach($filter_urlss AS $filter_url) {
+ foreach($filter_urls AS $filter_url) {
if (preg_match('@' . $filter_url . '@', $eventData['url'])) {
if ($filter_type == 'moderate') {
$this->log($logfile, $eventData['id'], 'MODERATE', PLUGIN_EVENT_SPAMBLOCK_FILTER_URLS, $addData);
|