Merge branch 'bzr/golem' of /Users/distler/Sites/code/instiki

This commit is contained in:
Jacques Distler 2009-05-03 01:00:24 -05:00
commit 80c3c15143
2 changed files with 2 additions and 2 deletions

View file

@ -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.

View file

@ -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