Index: branches/wmf/1.18wmf1/extensions/SpamBlacklist/SpamBlacklist_body.php |
— | — | @@ -238,8 +238,9 @@ |
239 | 239 | } |
240 | 240 | |
241 | 241 | # Do the match |
242 | | - wfDebugLog( 'SpamBlacklist', "Checking text against " . count( $blacklists ) . |
243 | | - " regexes: " . implode( ', ', $blacklists ) . "\n" ); |
| 242 | + # Disabled, causes UDP errors --aaron 9/22/11 |
| 243 | + #wfDebugLog( 'SpamBlacklist', "Checking text against " . count( $blacklists ) . |
| 244 | + # " regexes: " . implode( ', ', $blacklists ) . "\n" ); |
244 | 245 | $retVal = false; |
245 | 246 | foreach( $blacklists as $regex ) { |
246 | 247 | wfSuppressWarnings(); |
— | — | @@ -525,4 +526,3 @@ |
526 | 527 | } |
527 | 528 | } |
528 | 529 | } |
529 | | - |