diff options
-rw-r--r-- | app/models/incoming_message.rb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/app/models/incoming_message.rb b/app/models/incoming_message.rb index 84dd9840b..a4391b171 100644 --- a/app/models/incoming_message.rb +++ b/app/models/incoming_message.rb @@ -19,7 +19,7 @@ # Copyright (c) 2007 UK Citizens Online Democracy. All rights reserved. # Email: francis@mysociety.org; WWW: http://www.mysociety.org/ # -# $Id: incoming_message.rb,v 1.219 2009-09-09 17:01:47 francis Exp $ +# $Id: incoming_message.rb,v 1.220 2009-09-09 17:23:14 francis Exp $ # TODO # Move some of the (e.g. quoting) functions here into rblib, as they feel @@ -253,6 +253,10 @@ class FOIAttachment def display_filename filename = self._internal_display_filename + # Sometimes filenames have e.g. %20 in - no point butchering that + # (without unescaping it, this would remove the % and leave 20s in there) + filename = CGI.unescape(filename) + # Remove weird spaces filename = filename.gsub(/\s+/, " ") # Remove non-alphabetic characters |