Update of /cvsroot/php-blog/serendipity/plugins/serendipity_event_spamblock
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11364/plugins/serendipity_event_spamblock
Modified Files:
serendipity_event_spamblock.php
Log Message:
turn of debugging default
Index: serendipity_event_spamblock.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/plugins/serendipity_event_spamblock/serendipity_event_spamblock.php,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -d -r1.31 -r1.32
--- serendipity_event_spamblock.php 24 Nov 2004 15:52:03 -0000 1.31
+++ serendipity_event_spamblock.php 24 Nov 2004 15:54:17 -0000 1.32
@@ -285,7 +285,7 @@
switch($event) {
case 'fetchcomments':
- if (is_array($eventData) && !$_SESSION['serendipityAuthedUser'] && serendipity_db_bool($this->get_config('hide_email', true))) {
+ if (is_array($eventData) && !$_SESSION['serendipityAuthedUser'] && serendipity_db_bool($this->get_config('hide_email', false))) {
// Will force emails to be not displayed in comments and RSS feed for comments. Will not apply to logged in admins (so not in the backend as well)
@reset($eventData);
while(list($idx, $comment) = each($eventData)) {
|