diff options
author | francis <francis> | 2008-10-28 13:29:21 +0000 |
---|---|---|
committer | francis <francis> | 2008-10-28 13:29:21 +0000 |
commit | feb189a2244eb8164eab9f8fb1db521eb7db3d54 (patch) | |
tree | cc37fe3b7b06d8925302657b2bccc69c300aaba0 /app/models/info_request.rb | |
parent | ce6a6cb871ea7650a2b8fc06c9b79038db6110a7 (diff) |
Oops!
Diffstat (limited to 'app/models/info_request.rb')
-rw-r--r-- | app/models/info_request.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/models/info_request.rb b/app/models/info_request.rb index 6ca53bdea..231f8dc91 100644 --- a/app/models/info_request.rb +++ b/app/models/info_request.rb @@ -23,7 +23,7 @@ # Copyright (c) 2007 UK Citizens Online Democracy. All rights reserved. # Email: francis@mysociety.org; WWW: http://www.mysociety.org/ # -# $Id: info_request.rb,v 1.149 2008-10-28 13:04:20 francis Exp $ +# $Id: info_request.rb,v 1.150 2008-10-28 13:29:21 francis Exp $ require 'digest/sha1' require File.join(File.dirname(__FILE__),'../../vendor/plugins/acts_as_xapian/lib/acts_as_xapian') @@ -724,9 +724,9 @@ public end def apply_censor_rules_to_binary(binary) for censor_rule in self.censor_rules - text = censor_rule.apply_to_binary(binary) + binary = censor_rule.apply_to_binary(binary) end - return text + return binary end end |