diff options
author | francis <francis> | 2008-01-30 09:53:43 +0000 |
---|---|---|
committer | francis <francis> | 2008-01-30 09:53:43 +0000 |
commit | 4f3a0967da725e447de646b06fbef1c94a31d4be (patch) | |
tree | 1d7f92966d595021b0304ce832fe1dd267f9f013 /app/helpers/link_to_helper.rb | |
parent | 5acedd09b79642d58c6de5db872f82198b2f2c73 (diff) |
Fix some errors in and found by test stuff.
Diffstat (limited to 'app/helpers/link_to_helper.rb')
-rw-r--r-- | app/helpers/link_to_helper.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/helpers/link_to_helper.rb b/app/helpers/link_to_helper.rb index 79bdcd904..5c7242d18 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.12 2008-01-29 03:05:47 francis Exp $ +# $Id: link_to_helper.rb,v 1.13 2008-01-30 09:53:47 francis Exp $ module LinkToHelper @@ -74,10 +74,10 @@ module LinkToHelper # About page URLs def about_url - return help_general_url :action => 'about' + return help_general_url(:action => 'about') end def unhappy_url - return help_general_url :action => 'unhappy' + return help_general_url(:action => 'unhappy') end |