aboutsummaryrefslogtreecommitdiffstats
path: root/app/helpers/link_to_helper.rb
diff options
context:
space:
mode:
authorfrancis <francis>2008-03-05 22:03:15 +0000
committerfrancis <francis>2008-03-05 22:03:15 +0000
commitea493de6fe8ce5dd368c5a0fd3be31cea155c1af (patch)
tree7d533c9b0e2e5bc0ca81d56b38a6f04e306280b7 /app/helpers/link_to_helper.rb
parentbf59de6ee505e588a0524659e2ecae72e5677de5 (diff)
Revert from Adam's change to original.
That's just the default value, not used if override in config anyway.
Diffstat (limited to 'app/helpers/link_to_helper.rb')
-rw-r--r--app/helpers/link_to_helper.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/helpers/link_to_helper.rb b/app/helpers/link_to_helper.rb
index 62e6116f9..3e6ee7a40 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.20 2008-03-05 17:50:45 adam Exp $
+# $Id: link_to_helper.rb,v 1.21 2008-03-05 22:03:15 francis Exp $
module LinkToHelper
@@ -76,7 +76,7 @@ module LinkToHelper
# Admin pages
def admin_url(relative_path)
- admin_url_prefix = MySociety::Config.get("ADMIN_BASE_URL", "/admin/foi/")
+ admin_url_prefix = MySociety::Config.get("ADMIN_BASE_URL", "/admin/")
return admin_url_prefix + relative_path
end