diff options
author | francis <francis> | 2008-02-29 13:24:22 +0000 |
---|---|---|
committer | francis <francis> | 2008-02-29 13:24:22 +0000 |
commit | 6f154a34cf85cdf086c68e0a536c62a26b2e2fa9 (patch) | |
tree | 58519453e506de2a86f18a43193ef8db96783a8d /app/controllers/request_controller.rb | |
parent | defaffd5682c2621c5139b003ee786e93d3f58b8 (diff) |
Hide quoted sections by default
Diffstat (limited to 'app/controllers/request_controller.rb')
-rw-r--r-- | app/controllers/request_controller.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/controllers/request_controller.rb b/app/controllers/request_controller.rb index 885e1fcc1..76cf70ee1 100644 --- a/app/controllers/request_controller.rb +++ b/app/controllers/request_controller.rb @@ -4,7 +4,7 @@ # Copyright (c) 2007 UK Citizens Online Democracy. All rights reserved. # Email: francis@mysociety.org; WWW: http://www.mysociety.org/ # -# $Id: request_controller.rb,v 1.63 2008-02-28 14:25:51 francis Exp $ +# $Id: request_controller.rb,v 1.64 2008-02-29 13:24:22 francis Exp $ class RequestController < ApplicationController @@ -144,6 +144,7 @@ class RequestController < ApplicationController return end + @collapse_quotes = params[:unfold] ? false : true @events_needing_description = @info_request.events_needing_description last_event = @events_needing_description[-1] @last_info_request_event_id = last_event.nil? ? nil : last_event.id |