diff options
author | francis <francis> | 2008-11-07 00:47:23 +0000 |
---|---|---|
committer | francis <francis> | 2008-11-07 00:47:23 +0000 |
commit | 7b64b11425aaa5d38054c12d33fd16d7bff1883c (patch) | |
tree | 7bf5874db447d1d0cd45bc6b3755d7baf0f6ecc2 /app/helpers | |
parent | 47d1295bd002ffb295857690c0a40c1cfc0e5f8c (diff) |
Fix unhappy URLs
Diffstat (limited to 'app/helpers')
-rw-r--r-- | app/helpers/link_to_helper.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/helpers/link_to_helper.rb b/app/helpers/link_to_helper.rb index c036dfc92..16aa59117 100644 --- a/app/helpers/link_to_helper.rb +++ b/app/helpers/link_to_helper.rb @@ -5,7 +5,7 @@ # Copyright (c) 2007 UK Citizens Online Democracy. All rights reserved. # Email: francis@mysociety.org; WWW: http://www.mysociety.org/ # -# $Id: link_to_helper.rb,v 1.47 2008-11-07 00:01:50 francis Exp $ +# $Id: link_to_helper.rb,v 1.48 2008-11-07 00:47:23 francis Exp $ module LinkToHelper @@ -159,7 +159,7 @@ module LinkToHelper if info_request.nil? return help_general_url(:action => 'unhappy') else - return help_general_url(:action => 'unhappy', :url_title => info_request.url_title) + return help_unhappy_url(:url_title => info_request.url_title) end end |