diff --git a/vendor/plugins/dnsbl_check/lib/dnsbl_check.rb b/vendor/plugins/dnsbl_check/lib/dnsbl_check.rb index f832885f..c795a0c4 100644 --- a/vendor/plugins/dnsbl_check/lib/dnsbl_check.rb +++ b/vendor/plugins/dnsbl_check/lib/dnsbl_check.rb @@ -22,7 +22,7 @@ require 'resolv' module DNSBL_Check $dnsbl_passed ||= [] - DNSBLS = %w{list.dsbl.org bl.spamcop.net sbl-xbl.spamhaus.org} + DNSBLS = %w{bl.spamcop.net sbl-xbl.spamhaus.org} private # Filter to check if the client is listed. This will be run before all requests. diff --git a/vendor/plugins/maruku/lib/maruku/input/charsource.rb b/vendor/plugins/maruku/lib/maruku/input/charsource.rb index 15339787..d2d978d6 100644 --- a/vendor/plugins/maruku/lib/maruku/input/charsource.rb +++ b/vendor/plugins/maruku/lib/maruku/input/charsource.rb @@ -122,7 +122,7 @@ class CharSourceManual def consume_whitespace while c = cur_char - if (c == 32 || c == ?\t) + if (c == ?\s || c == ?\t) # puts "ignoring #{c}" ignore_char else