aboutsummaryrefslogtreecommitdiffstats
path: root/app/helpers/link_to_helper.rb
diff options
context:
space:
mode:
authorSeb Bacon <seb.bacon@gmail.com>2011-07-06 13:35:46 +0100
committerSeb Bacon <seb.bacon@gmail.com>2011-07-06 13:35:46 +0100
commit99db99b1658b4a6679c6abca22375fe0114a3616 (patch)
treeaf9855753b0d6c850f8ad03b2ef9a76f2c37d81a /app/helpers/link_to_helper.rb
parentd74ea8b14d6502f6567a3729358a064e40104edd (diff)
undo hard-coded domain
Diffstat (limited to 'app/helpers/link_to_helper.rb')
-rwxr-xr-xapp/helpers/link_to_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/link_to_helper.rb b/app/helpers/link_to_helper.rb
index fa8bb0de8..12f19a312 100755
--- a/app/helpers/link_to_helper.rb
+++ b/app/helpers/link_to_helper.rb
@@ -180,7 +180,7 @@ module LinkToHelper
def main_url(relative_path)
- url_prefix = "http://" + MySociety::Config.get("DOMAIN", 'informatazyrtare.org')
+ url_prefix = "http://" + MySociety::Config.get("DOMAIN", '127.0.0.1:3000')
return url_prefix + relative_path
end