Update of /cvsroot/php-blog/serendipity/plugins/serendipity_event_spamblock
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31896
Modified Files:
serendipity_event_spamblock.php
Log Message:
- Suppress errors from fopen() again
Index: serendipity_event_spamblock.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/plugins/serendipity_event_spamblock/serendipity_event_spamblock.php,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- serendipity_event_spamblock.php 23 Sep 2004 13:02:59 -0000 1.12
+++ serendipity_event_spamblock.php 23 Sep 2004 13:05:56 -0000 1.13
@@ -395,7 +395,7 @@
return;
}
- $fp = fopen($logfile, 'a+');
+ $fp = @fopen($logfile, 'a+');
if ( !is_resource($fp) ) {
return;
}
|