diff options
author | Henare Degan <henare.degan@gmail.com> | 2012-10-04 14:58:01 +1000 |
---|---|---|
committer | Henare Degan <henare.degan@gmail.com> | 2012-10-04 15:12:03 +1000 |
commit | 38a64203dd2e875e92c4bf4e5cd48ff59cd49526 (patch) | |
tree | b9e28d225a387423acc583dbf72845886d8081a3 /lib/configuration.rb | |
parent | 93dfbe495b5fb5e21b5fdf16a1c325a9eb8faa12 (diff) |
Correct default value for ADMIN_BASE_URL
Back in 008e64e7 it was changed so that you could just set a blank value instead of '/admin/', it looks like test.yml was never updated and somehow lib/configuration.rb started off with the old value too.
Diffstat (limited to 'lib/configuration.rb')
-rw-r--r-- | lib/configuration.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/configuration.rb b/lib/configuration.rb index 03ca62343..79dbccf71 100644 --- a/lib/configuration.rb +++ b/lib/configuration.rb @@ -4,7 +4,7 @@ module Configuration DEFAULTS = { - :ADMIN_BASE_URL => '/admin/', + :ADMIN_BASE_URL => '', :ADMIN_PASSWORD => '', :ADMIN_PUBLIC_URL => '', :ADMIN_USERNAME => '', |